求指教,结果怎么一直是排序后的数组

来源:7-1 编程练习

h11223

2015-11-16 18:13

import java.util.Arrays;

public class HelloWorld {


    //完成 main 方法

    public static void main(String[] args) {

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

     HelloWorld hello=new HelloWorld();   

     hello.top3(scores); 

       

    }

    

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

  public void top3(int[] scores){

        int count=0

        Arrays.sort(scores);

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

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

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

                             continue;

                             }


                count++;

                   if(count>3){

                       break;

                   }

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

        }

       

    }

    

    


写回答 关注

2回答

  • 不_想_起_名_字
    2015-11-16 18:37:55
    已采纳

    问题在于continue使用的有问题,不应该使用;你给的数组数据只有两个不符合if条件,导致后面的break一直没有执行;

    h11223

    continue不是跳出循环中尚未执行的语句吗,当i=2的时候count就会等于4,然后就跳出循环,不是这样吗

    2015-11-17 14:48:09

    共 1 条回复 >

  • h11223
    2015-11-18 16:32:22

    自己回答,int count=0缺了个;

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

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

1165172 学习 · 17581 问题

查看课程

相似问题