wshyzx
2016-06-03 11:59
import java.util.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
HelloWorld hello=new HelloWorld();
int[] scores={89,-23,64,91,119,52,73};
hello.getScores(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void getScores(int[] scores){
Arrays.sort(scores);
int[] newScores=new newScores[3];
for(int i=scores.length-1,j=0; i>=0,j<=2; i--){
if(scores[i]<0||scores[i]>100){
continue;
}
newScores[j]=scores[i];
j++;
}
System.out.println("考试成绩的前三名为:"+Arrays.toString(newScores));
}
}
int[] newScores=new newScores[3];
应该是: int[] newScores=new int[3];
i>=0,j<=2
条件不能用,应该用&&
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题