我这哪里错了呀
import java.util.Araays;
public class HellWorld{
//完成 main 方法
public static void main(String[] args) {
int[]scores={89 , -23 , 64 , 91 , 119 , 52 , 73};
HellWorld hello=new HellWorld ();
hello.top(scores);
}
public void top(int[] sco){
Arrays.sort(sco);
int nums=0;
for (int i=sco.length-1;i>=0;i--){
if( sco[i]<0 || sco[i]>100 ){
continue;
}
nums++;
if(nums>3){
break;
}
}
System.out.println(sco[i] );
}