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

请问为什么错误?不知道原因。谢谢

import java.util.Arrays;


public class HelloWorld {

    

    //完成 main 方法

    public static void main(String[] args) {

     HelloWorld hello=new HelloWorld();

     int[] scores={89 , -23 , 64 , 91 , 119 , 52 , 73};

     hello.array(scores);

     topThree=new  int[3] ;

     System.out.println(Arrays.toString(topThree))  ;

    }

    //定义方法完成成绩排序并输出前三名的功能

    public int[] array(int[] scores){

        Arrays.sort(scores);

        int a=scores.length;  

     int[] topThree=new int[]{scores[a-3],scores[a-2],scores[a-1]};

     return topThree;   

    }

   

}


正在回答

3 回答

https://img1.sycdn.imooc.com//5c9735fb00019fa207240502.jpg已经标注

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

没看懂 啥意思!啥报错?

0 回复 有任何疑惑可以回复我~

调试通过:

import java.util.Arrays;


public class HelloWorld {

    

    //完成 main 方法

    public static void main(String[] args) {

     HelloWorld hello=new HelloWorld();

     int[] scores={89 , -23 , 64 , 91 , 119 , 52 , 73};

     hello.array(scores);

    }

    //定义方法完成成绩排序并输出前三名的功能

    public void array(int[] scores){

        Arrays.sort(scores);

        int a=scores.length;  

     int[] topThree=new int[]{scores[a-3],scores[a-2],scores[a-1]};

    for(int i=0;i<topThree.length;i++){

     System.out.println(topThree[i]) ;  

    }

    }

}


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请问为什么错误?不知道原因。谢谢

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