标签:pre 定义 dom public str 个数 pac main pack
package ShunXuDome;
public class forDOme05 {
public static void main(String[] args) {
int[]numbers={10,20,30,40,50};//定义了一个数组
for (int i = 0; i < 5; i++) {
System.out.println(numbers[i]);
}
//遍历组的元素
for(int x:numbers){
System.out.println(x);
}
}
}
标签:pre 定义 dom public str 个数 pac main pack
原文地址:https://www.cnblogs.com/java5745/p/14659522.html