不知道问题出在哪
import java.util.Arrays;
public class aa {
public static void main(String[] args) {
System.out.println("考试成绩前三名为:");
int scores[]={89 , -23 , 64 , 91 , 119 , 52 , 73};
int j=0;
for(int i=0;i<=scores.length;i++) {
if(scores[i]<=100&&scores[i]>=0) {
j++;
}
}
int score[]=new int[j];
int f=0;
for(int c=0;c<=scores.length;c++) {
if(scores[c]<=100&&scores[c]>=0&&f<j) {
score[f]=scores[c];}
f++;
};
Arrays.sort(score);
System.out.println(score[j]);
System.out.println(score[j-1]);
System.out.println(score[j-2]);
}
}