为了账号安全,请及时绑定邮箱和手机立即绑定

编译报错,需要'.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[]          ) /*错误指在这个小括号上*/     ;

}//先谢谢大神啦

}


正在回答

1 回答

打印输出的时候把res后面的[]去了,或者在[]里面加上下标。

1 回复 有任何疑惑可以回复我~
#1

废宅 提问者

非常感谢!
2016-10-13 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

编译报错,需要'.class'。错误在结尾,标出来了。网上搜出来都是需要class,interface或enum

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信