咖喱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]+",");
}
}
是的, i=scores.length是数组的长度,而数组的下标是从0开始的
恩,是的
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题