qq_慕虎5286101
2019-06-02 23:31
import java.util.Arrays;
public class HelloWorld {
public static void main(String[] args) {
int [] scores={89 , -23 , 64 , 91 , 119 , 52 , 73};
HelloWorld hello = new HelloWorld();
hello.a(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void a(int[] scores){
Arrays.sort(scores);
int num =0;
for (int i = scores.length-1;i >= 0; i-- ){
if(scores[i]<0||scores[i]>100){
continue;}
num++;
if(num>3){
break;
}System.out.println(scores[i]);
}
}
}
这里的num做的是循环体,目的是排出前三名,走的循环过程是i = scores.length-1时,num = 0,依次向下,当num大于3时跳出循环,得到你通过Arrays.sort()排序后得到的最大的三个成绩
Java入门第一季(IDEA工具)升级版
1165178 学习 · 17581 问题
相似问题