求大神帮我看下代码,运行报错
package zhuyong1;
import java.util.Arrays;
public class Yoo {
public static void main(String[] args) {
int[] scores={20,-52,39,96,57,45,43};
System.out.println("考试成绩前三名为:");
Yoo hello=new Yoo();
hello.showTop3(scores);
}
public void showTop3(int[] scores){
Arrays.sort(scores);
int nums=0;
for(int i=scores.length-1; i>0;i--){
if(scores[0]<0||scores[i]>100){
continue;
}
nums++;
if(nums>3);{
break;
}
}
System.out.println(scores[i]);
}
}