为什么 i=scores.length-1 要减一,是不是因为数组是重零开始的原因

来源:7-1 编程练习

咖喱GETGET

2017-04-09 16:48

public static void main(String [] args){

int [] scores = {89, -23, 64, 91, 119, 52, 79};

System.out.println("本次考试前三名:");

HelloW hello = new HelloW();

hello.top3(scores);

}

public void top3(int [] scores){

Arrays.sort(scores);

int num=0;

for(int i=scores.length-1;i>=0 && num<3;i--){

if(scores[i]<0 || scores[i]>100){

continue;

}

num++;

System.out.print(scores[i]+",");

}

}


写回答 关注

2回答

  • 未阳
    2017-04-10 15:52:29
    已采纳

    是的, i=scores.length是数组的长度,而数组的下标是从0开始的

    咖喱GETG...

    非常感谢!

    2017-04-11 09:38:14

    共 1 条回复 >

  • qq_朦朦墨色染_04259615
    2017-04-09 17:09:14

    恩,是的

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题