//完成 main 方法
public static void main(String[] args) {
int[] scores={89,-23,64,91,119,52,73};
//创建对象
HelloWorld hello=new HelloWorld();
System.out.println("考试成绩前三名为:");
//调用方法
hello.rank(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void rank(int[] scores){
Arrays.sort(scores);
for(int i=scores.length-1,count=0;i<scores.length;i--){
if(scores[i]>100||scores[i]<0)continue;
count++;if(count>3)break;System.out.println(scores[i]);
}
}