不知道为什么运行不了

来源:7-1 编程练习

最菜小白

2018-10-16 14:09

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回答

  • ruye
    2018-10-16 16:41:39
    已采纳
    上面这句贴错了
    int[] scores = {89, -23, 64, 91, 119, 52, 73};
  • ruye
    2018-10-16 16:35:59
    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]);


Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题