- public class aaaa {
- public static void main(String[] args) {
- int[] scores={90,85,65,89,87};
- scores[2]=92;
- System.out.println("修改后,五名同学的成绩是:");
- for(int i=0; i<scores.length;i++) {
- System.out.print(scores[i] + " ");
- }
- }
- }
复制代码 数组的角标是从0开始的。长度是length。
以你的数组为例,length是5,角标是0~4,所以第3个数的角标是2!
[img][/img] |