为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

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

0 回复 有任何疑惑可以回复我~

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;            

  }

}    

}


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信