我那个变量j一直报错,这是为什么
public void print(int[] scores){
Arrays.sort(scores);
for(int j=scores.length-1;j>=0;j--);{
int score=scores[j];
System.out.println("考试成绩的前三名为:"+scores[j]);
}
}
public void print(int[] scores){
Arrays.sort(scores);
for(int j=scores.length-1;j>=0;j--);{
int score=scores[j];
System.out.println("考试成绩的前三名为:"+scores[j]);
}
}
2017-02-23
举报