数组元素的使用-第2章java基础
3、数组元素的使用 数组可以通过下标访问自己的元素: int a[ ]=new int[10]; for(int i=0;i<a.length;i++) { a[i]=i; System.out.print(a[i]+""); }