package tk.zhangwei.array2;
/***
*
* jdk新特性
*/
import java.util.Arrays;
public class test02 {
public static void main(String[] args){
int[] a = {
15,
12,
45,
84,
87,
23,
42};
for(
int i : a){
System.out.print(i+
" ");
}
}
}
转载请注明原文地址: https://www.6miu.com/read-31787.html