问答详情
源自:7-1 编程练习

请问哪里出错了

import java.util.Arrays;


public class HelloWorld {

    //完成 main 方法

    public static void main(String[] args) {

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

      System.out.println("考试成绩的前三名为:");

      Helloworld hello=new Helloworld

      hello.showTop3(scores);

        

        

        

    }

    

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

    public void showTop3(int[] scores){

        Arrays.sort(scores);

        int num=0;

        for(int i=scores.length - 1;i>=0;i--){

            if(socres[i]<0 || socres[i]>100){

                continue;

            } 

            num++;

            if(num>3){

                break;

            }

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

        }

    } 

    

    

    

    

    

    

    

    

    

}


提问者:qq_逝水年华_13 2017-06-18 18:05

个回答

  • YAuW
    2017-06-18 18:40:24
    已采纳

       Helloworld hello=new Helloworld 没写分号,

  • srecko
    2017-07-15 21:29:06

    Helloworld hello=new Helloworld

    改为

    HelloWorld hello=new HelloWorld();

    注意W的大小写前后不一致,JAVA是区分大小写的。

  • 小木木_
    2017-06-19 09:40:21

     Helloworld hello=new Helloworld();