请求前辈告诉这哪里错了???

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("考试前三名的成绩为:");

        hellWord 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(scores[i] <0 || scores[i] > 100){

                continue;

            }

            num++;

            if(num>3){

                break;

            }

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

        }

    }

}


诸葛浅忆
浏览 1764回答 2
2回答

yanrun

都在图里了

回到原点co

 hello.showTop3(scores);以分号结尾
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java