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

请问哪里错误????

import java.util.Arrays;


public class HelloWorld {

    

    //完成 main 方法

    public static void main(String[] args) {

        HelloWorld hello=new HelloWorld();

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

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

        hello.showTop3(scores);

        

        

    }

    

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

    public void showTop3(int [] scores){

       Array.sort(scores); 

       int num= 0;

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

            if (chengji[i]<0||chengji[i]>100)

            {

                continue;

            }

            num++;

          

             if (num>3){

                 break;

             }

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

    }

          }

         

    }

    

    

    

    

    

    

    

    

    

}


正在回答

代码语言

2 回答

Array.sort(scores);    应为Arrays.sort(scores);

 if (chengji[i]<0||chengji[i]>100)  应为   if (scores[i]<0||scores[i]>100)

1 回复 有任何疑惑可以回复我~
运行起来 显示
HelloWorld.java:43: error: class, interface, or enum expected
}
^
1 error


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

举报

0/150
提交
取消

请问哪里错误????

我要回答 关注问题
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号