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

信号不出来错误 大佬们

package com.imooc;

import java.util.Arrays;

public class Demo06 {

public static void main(String[] args) {

int scores[]={89 , -23 , 64 , 91 , 119 , 52 , 73};

System.out.println("前三名的成绩:");

Demo06 hello=new Demo06();

hello.show(scores);

}


public void show(int[] scores){

Arrays.sort(scores);   //对成绩升序排序

int count=0;  //定义变量用于存储有效成绩

for(int i=scores.length-1;i>=0;i++){

if((scores[i]<0)||(scores[i]>100)){  //判断成绩是否有效

continue;

}

count++;  //有效成绩加一

if(count>3){

break;//停止执行

}

System.out.println(scores[i]);

}

}

}


提问者:余生敲代码 2020-03-21 17:44

个回答

  • 慕娘5579366
    2020-03-24 09:48:08

    i++变i--,还有你不输出三遍?if(count>3)放System后面

  • qq_慕雪8151599
    2020-03-22 11:13:19

    倒序循环哪里循环变量应该是i--,你那个会显示超出数组长度