为了账号安全,请及时绑定邮箱和手机立即绑定

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

}

}


正在回答

2 回答

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

0 回复 有任何疑惑可以回复我~
#1

咖喱GETGET 提问者

非常感谢!
2017-04-11 回复 有任何疑惑可以回复我~

恩,是的

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信