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

不知道为什么运行不了

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("输出成绩前三名");

       HelloWord hello = new HelloWorld();

       hello.showTop3(scores);

        

    }

    

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

    public void showTop3(int[]scores){

        Arrays.sort(scores);

        int nums = 0;

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

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

                continue;

                 }nums++;

                 if(nums>3){

                    break;

                }

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

    

          

        

    }

    

    

    

    

    

    

    

    

    

}


正在回答

2 回答

上面这句贴错了
int[] scores = {89, -23, 64, 91, 119, 52, 73};
0 回复 有任何疑惑可以回复我~
import java.util.Arrays;

public class HelloWorld {
    
    //完成 main 方法
    public static void main(String[] args) {
        int[] = {89, -23, 64, 91, 119, 52, 73}
        HelloWorld hello = new HelloWorld();
        hello.hello(scores);
        
  
    }
    
    //定义方法完成成绩排序并输出前三名的功能
    public void hello(int[] scores){
        Arrays.sort(scores);
        int count = 0;
        for(int i = scores.length - 1; i >= 0; i--){
            if(scores[i] > 100 || scores[i] <0){
                continue;
            }
            count++;
            if(count > 3){
                break;
            }
            System.out.println(scores[i]);
        }
    }
}

上面代码是我的,你有两个问题,

第一个,你写的

HelloWord hello = new HelloWorld();

第一个单词写错了,实际为

HelloWorld hello = new HelloWorld();

第二个输出写在for循环外面了

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


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

举报

0/150
提交
取消

不知道为什么运行不了

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