在本地可以运行成功,但是提交到我们这个编译器里面,运行没有反应

来源:7-1 编程练习

weibo_一叶菩提a一念尘缘_0

2017-11-22 09:50

import java.util.Arrays;

public class HelloWorld {

    

       public static void main(String[] args) {

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

       HelloWorld hello =new HelloWorld();

       hello.sortScore(scores);

        

    }

    

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

    

    public void sortScore(int[] scores){

        

       Arrays.sort(scores);

   System.out.println(Arrays.toString(scores));//输出排序数组

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

   //num 控制输出的排名前3数

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

  if(scores[i]<=100&&scores[i]>0&&num<4){

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

  num++;            

  }else

     continue;

           

  }

}

    

}


写回答 关注

2回答

  • 荒mike
    2017-11-30 23:52:59

    可以成功啊,为什么不行,我把你的代码复制到慕课上的,成功运行了

  • weibo_一叶菩提a一念尘缘_0
    2017-11-22 09:55:19

    import java.util.Arrays;

    public class test03 {

          public static void main(String[] args) {

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

           test03 hello =new test03();

           hello.sortScore(scores);         

        }     

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

        public void sortScore(int[] scores){         

           Arrays.sort(scores);

       System.out.println(Arrays.toString(scores));//输出排序数组

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

       for(int i=scores.length-1,num=1;i>=0;i--){ //num 控制输出的排名前3数

      if(scores[i]<=100&&scores[i]>0&&num<4){

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

      num++;            

      }else

         continue;            

      }

    }    

    }


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

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

1165646 学习 · 17587 问题

查看课程

相似问题