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

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

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]);
  }
  

提问者:qq_慕少1123198 2020-02-19 11:41

个回答

  • Aries_chen
    2020-02-19 14:41:34

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

    其次 不能用break 应该用continue