编程练习中有一点小问题
这个程序哪里有问题呢?
提示的是第一句“import”
第二个问题for循环中我的遍历方式有问题吗?
这个程序哪里有问题呢?
提示的是第一句“import”
第二个问题for循环中我的遍历方式有问题吗?
2016-04-14
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};
System.out.println("考试的成绩前三名为:");
hello.showTop3(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void showTop3(int[]scores){
int num=0;
for(int i=scores.length-1;i>=0;i--){
Arrays.sort(scores);
if((scores[i]<0)||(scores[i]>100)){
continue;
}
num++;
if(num>3){
break;
}
System.out.println(scores[i]);
}
}
}
举报