哒啦哒啦哒
2016-12-10 15:14
import java.util.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
int[] scores={89,-23,64,91,119,52,73};
System.out.println("考试成绩前三名:");
HelloWorld hello=new HelloWorld;
hello.TopShow(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void TopShow(int[] scores){
Arrays.sort(scores);
int num=0;
for(int i=scores.length-1;i>=0;i--){
if (scores[i]<0||scores[i]>100){
continue;
}
num++;
if(num>3){
break;
}
System.out.println(scores[i]);
}
}
}
用eclipse编译有两个错误,一个是System.out.println("考试成绩前三名:");
还有一个错误是hello.TopShow(scores);
HelloWorld hello=new HelloWorld(); 后面的括号丢了 分号;注意用英文
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题