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

我自己做的没有报错,但是越界怎么解决

package wvw;
import java.util.Arrays;

public class HelloWord {

 public static void main(String[] args) {
  int scores[] = {89,-23,64,91,119,52,73};
  HelloWord A = new HelloWord();
  System.out.println("成绩前三有:");
  A.top3(scores);
  
  /*Arrays.sort(scores);
  for(int i = scores.length-1;i >=0;i--) {
     System.out.print(scores[i] + " ");*/
   

 }
  
  
  public void top3(int []scores) {
   Arrays.sort(scores);
   int mun = 0;
   for(int i = scores.length-1;i >=0;i++) {
    if(0 <= scores[i] && scores[i] <= 100) {
     System.out.print(scores + " ");
    }else{
     continue;
    }
    
    while(mun < 3) {
     System.out.print(scores[i]);
     mun++;
    }
   }
   
  }   


 
  
 
 
}


正在回答

2 回答

for循环里面的循环变量i应该是递减,你写成i++了

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

失误哈哈

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

举报

0/150
提交
取消

我自己做的没有报错,但是越界怎么解决

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