一.申明,分配空间
int [] scores=new int[5];
二.遍历
二维数组遍历
for(int i=0;i<scores.length;i++){
for(int j=0;j<scores[i].length;j++){
System.out.println(scores[i][j]);
}
}
本文共 209 字,大约阅读时间需要 1 分钟。
一.申明,分配空间
int [] scores=new int[5];
二.遍历
二维数组遍历
for(int i=0;i<scores.length;i++){
for(int j=0;j<scores[i].length;j++){
System.out.println(scores[i][j]);
}
}
转载于:https://www.cnblogs.com/beesky520/p/4134058.html