package com.heima.test;
public class Test5 {
/**
* 分析:
1,需要定义一个字符串"["
2,遍历数组获取每一个元素
3,用字符串与数组中的元素进行拼接
*/
public static void main(String[] args) {
int[] arr = {1,2,3};
String s = "[";
for(int i = 0;i<arr.length;i++){
if(i == arr.length -1){
s = s + arr[i] +"]";
}else{
s= s + arr[i] +", ";
}
}
System.out.println(s);
}
}
|
|