编译报错,需要'.class'。错误在结尾,标出来了。网上搜出来都是需要class,interface或enum
import java.util.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
HelloWorld hello = new HelloWorld();
int[] scores = new int[]{89,-23,64,91,119,52,73};
hello.max(scores);
}
//定义方法完成成绩排序并输出前三名的功能
public void max(int[] scores){
Arrays.sort(scores);
int[] res = new int[3];
int num = 0;
for(int x = scores.length - 1; x >= 0 && num <= 2; x--){
if (scores[x] < 0 || scores[x] > 100)
continue;
res[num] = scores[x];
num ++;
}
System.out.println(res[] ) /*错误指在这个小括号上*/ ;
}//先谢谢大神啦
}