问答详情
源自:7-1 编程练习

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

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]+",");

}

}


提问者:咖喱GETGET 2017-04-09 16:48

个回答

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

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

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

    恩,是的