import java.util.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
int[] scores={89,-23,64,91,119,52,73} ;
System.out.println("考试成绩前三名为:");
HelloWorld hello=new HelloWorld();
hello.show(scores);
}
public void show(int[] scores){
Arrays.sort(scores);
int num=0;
for(int i=scores.length-1;i>=0;i--){
if (scores[i]<100||scores[i]>0){
continue;
}
num++;
if(num>3){
break;
}
System.out.println(Arrays.toString(scores));
}
}
}//定义方法完成成绩排序并输出前三名的功能
if 条件判断前三名成绩 了 num 》 3 就跳出循环 进行打印 所以只能 显示前三明成绩
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
int scores = { 89, -23, 64, 91, 119, 52, 73 };
System.out.println("考试成绩的前三名为:");
HelloWorld hello = new HelloWorld ();
hello.showTop(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void shouTop3(int[] score){
Arrays.sort(scores);
int num = 0;
for (int i = scores.length = 1; i >=0; i--){
if (scores[i] < 0) || scores[i] > 100) {
continue;
} numu++;
if (num > 3){
break;
}
System.out.println(scores[1]);
}
}
}
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
int scores = { 89, -23, 64, 91, 119, 52, 73 };
System.out.println("考试成绩的前三名为:");
HelloWorld hello = new HelloWorld ();
hello.showTop(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void shouTop3(int[] score){
Arrays.sort(scores);
int num = 0;
for (int i = scores.length = 1; i >=0; i--){
if (scores[i] < 0) || scores[i] > 100) {
continue;
} numu++;
if (num > 3){
break;
}
System.out.println(scores[1]);
}
}