第50行报错".class expected"
import java.util.Arrays;public class HelloWorld { //完成 main 方法 public static void main(String[] args) { int score[]={89 , -23 , 64 , 91 , 119 , 52 , 73}; HelloWorld hello = new HelloWorld(); int outSelection[] = hello.selection(score); } //定义方法完成成绩排序并输出前三名的功能 public int[] selection (int scores[]){ int b = 0; Arrays.sort(scores); int output[]; for(int a = scores.length ; a > 0 ; a++){ if((scores[a] >= 0 )&(scores[a]<= 100)&(b < 3)){ output[b] = scores[a]; b = b + 1; } } return output[]; } }