package com.chongrui.test;
/*
* for(元素变量x:遍历对象obj){
* 引用X的java语句
*
* }
*
*
* */
public class test {
public static void main(String[] args) {
// TODO Auto-generated method stub
int arr[] = {7,10,1};
System.out.println("一维数组中的元素是");
for (int x:arr){
System.out.println(x+" ");
}
}
}
一维数组中的元素是
7
10
1