信号不出来错误 大佬们

来源:7-1 编程练习

余生敲代码

2020-03-21 17:44

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

}

}

}


写回答 关注

2回答

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

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

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

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


Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165619 学习 · 17587 问题

查看课程

相似问题