问答详情
源自:7-1 编程练习

为什么不能出现成绩 只出现了“考试前三名成绩” 求大神解答

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.show(scores);
    }
     public void show(int[] scores){
         Arrays.sort(scores);
         int num=0;
         for(int i=scores.length-1;i>=0;i--){
            
          if (scores[i]<100||scores[i]>0){
              continue; 
          }
          num++;
          if(num>3){
              break;
          }
        System.out.println(Arrays.toString(scores)); 
     }
    
    }
   
    }//定义方法完成成绩排序并输出前三名的功能
   
   
   
   
 

提问者:h632701631 2016-05-06 10:11

个回答

  • 流逝的回忆已成空白
    2016-05-16 10:12:28

    http://img.mukewang.com/57392c560001371d06560747.jpg

    if 条件判断前三名成绩 了  num 》 3  就跳出循环  进行打印  所以只能 显示前三明成绩

  • 雨中撑伞
    2016-05-06 11:54:06

    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.showTop(scores);

            

            

            

        }

        

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

        public void shouTop3(int[] score){

            Arrays.sort(scores);

            int num = 0;

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

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

                    continue;

                } numu++;

                if (num > 3){

                    break;

                }

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

            }

        }

     }   


  • 雨中撑伞
    2016-05-06 11:53:17

    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.showTop(scores);

      }

        

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

        public void shouTop3(int[] score){

            Arrays.sort(scores);

            int num = 0;

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

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

                    continue;

                } numu++;

                if (num > 3){

                    break;

                }

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

            }

        }