又是那里错了啊 学了这么多 每节练习都是都是看着参考答案输入完的 完了还不对 彻底没信心了 大学专业就这个 我完蛋了
onceeeeday
2014-09-04
2 回答
public static void main(String[] args) {
int[] scores={89,-23,64,91,119,52,73};
HelloWorld hello=new HelloWorld();
System.out.println("考试成绩的前三名为:");
hello.top(scores);
}
public void top(int[] scores){
Arrays.sort(scores);
int num=0;
for(int i=scores.length-1;i>0;i--){
if(num>=3)
break;
if(scores[i]<0 || scores[i]>100){
continue;
}else{
num++;
System.out.println(scores[i]);
}
}
}
}
给你一份代码你可以参考一下,或者对照一下
举报
0/150
提交
取消