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

好不容易写出来的

import java.util.Arrays;
public class Score {
   public static void main(String[] args) {
       int[] scores = {89, 23, 64, 91, 119, 52, 73};
       Arrays.sort(scores);
       Score hello = new Score();
       hello.top(scores);

   }

   public void top(int[] scores) {
       System.out.print("考试成绩的前三名;");
       int num = 0;
       for (int i = scores.length - 1; i > 0; i--) {
           if (scores[i] > 0 && scores[i] < 100) {
               num++;
               if (num > 3) {
                   break;
               }
               System.out.print(scores[i]);
           }

       }

   }
}

正在回答

1 回答

修订版:

import java.util.Arrays;
public class Score {
   public static void main(String[] args) {
       int[] scores = {89, 23, 64, 91, 119, 52, 73};
       Arrays.sort(scores);
       Score hello = new Score();
       hello.top(scores);

   }

   public void top(int[] scores) {
       System.out.print("考试成绩的前三名;");
       int num = 0;
       for (int i = scores.length - 1; i > 0; i--) {
           if (scores[i] > 0 && scores[i] < 100) {
               num++;
               if (num > 3) {
                   break;
               }
               System.out.print(scores[i]);
           }

       }

   }
}

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

举报

0/150
提交
取消

好不容易写出来的

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