JAVA-增强for循环
增强for循环
public class rug {
public static void main(String[] args) {
int[] numbers = {10,20,30,40,50}; //定义一个数组
//遍历数组的元素
for (int x: numbers){
System.out.println(x);
}
}
}
public class rug {
public static void main(String[] args) {
int[] numbers = {10,20,30,40,50}; //定义一个数组
//遍历数组的元素
for (int x: numbers){
System.out.println(x);
}
}
}