import java.util.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
int[] scores={89 , -23 , 64 , 91 , 119 , 52 , 73};
HelloWorld hello=new HelloWorld();
System.out.println("考试成绩的前三名是");
hello.getFirstThree(scores);
//定义方法完成成绩排序并输出前三名的功能
public void getFirstThree(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]);
}
}
}
已找到,谢谢
我发现我少打了一个大括号
补上之后还是报错
HelloWorld.java:40: error: class, interface, or enum expected } ^ 1 error
HelloWorld.java:14: error: illegal start of expression public void getFirstThree(int[] scores){ ^ HelloWorld.java:14: error: illegal start of expression public void getFirstThree(int[] scores){ ^ HelloWorld.java:14: error: ';' expected public void getFirstThree(int[] scores){ ^ HelloWorld.java:14: error: ';' expected public void getFirstThree(int[] scores){ ^ 4 errors