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

各位大佬,能帮我看看哪错了吗?

package com.imooc;
import java.util.Arrays;
public class HelloWorld {
 
 public static void main(String[] args) {
  HelloWorld hello=new HelloWorld();
  int[]scores={89,-23,64,91,119,52,73};
  System.out.println();
  hello.showTop(scores);
  
  
 }
 public void showTop(int[]scores){
  Arrays.sort(scores);
  for(int i=scores.length-1;i>=0;i++){
   if(i<scores.length-3){
    break;
   }
   System.out.println(scores[i]);
  }
  

正在回答

1 回答

首先 倒序遍历 应该用 i-- 不然你循环里条件 if(i<scores.length-3) 是一直成立的,而且 你输出的时候会超过数组长度

其次 不能用break 应该用continue

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

Aries_chen

写错了 if(i<scores.length-3)这条语句 刚开始是成立的 直接跳出循环了
2020-02-19 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

各位大佬,能帮我看看哪错了吗?

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