import java.util.Arrays;
public class HelloWord {
public static void main(String[] args) {
int[] scores={89,-23,64,91,119,52,73};
System.out.println("输出前三名:");
HelloWord hello=new HelloWord();
hello.Top(scores);
}
public void Top(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++;
if(num>3){
break;
}
System.out.println(scores[i]);
}
}
}
如果这是在Eclipse运行的话,没有错误,但是要在这慕课网页上运行的话,类名需要改成HelloWorld。
第一个HelloWord改为HelloWorld