求大神指出错误

来源:7-1 编程练习

小白客

2016-04-12 23:06

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.big3(scores);    
    }
        
       public void big3 (int[] scores)
       {Arrays.sort(scores);
       int num=0;
       for(int i=scores.length-1;i>=0&&num<=3;i++){
            if (scores[i]>=0&&scores[i]<=100){
               System.out.println(scores[i]);
                num++;  
            }else{
           continue;
           }
        }
       }
        
        
        
    }


写回答 关注

3回答

  • 什么什么青年欢乐多
    2016-04-13 11:08:14

    import java.util.Arrays;

    public class HelloWorld {

    public static void main(String[] args) {

            HelloWorld hello=new HelloWorld();

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

            hello.scort(scores);

    }

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

        public void scort(int[] scores)

        {

            Arrays.sort(scores);

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

            for(int i=0;i<scores.length;i++)/*亲,你写的for(int i=scores.length-1)从数组最后一个元素开始,再执行                                                               i++数组越界啦*/

            {

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

                continue;

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

            }

        }

        


  • 蛰伏760
    2016-04-13 09:17:17

    i>=0&&num<=3  有4个了

    i++应该i--

  • SLQ
    2016-04-13 08:27:17

    i++哪里改成i--,你溢出了,还有num<=3应该是num<3

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

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

1165172 学习 · 17581 问题

查看课程

相似问题