考试成绩后面没有数据

来源:7-1 编程练习

学习使我快乐336

2018-07-27 10:51

import java.util.Arrays;

public class HelloWorld {

public static void main(String[] args) {

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

System.out.println("考试成绩");

HelloWorld hello=new HelloWorld();

hello.Top(scores);

}

public void Top(int[]scores){

Arrays.sort(scores);

int num=0;

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

if (scores[i]>0||scores[i]<100){

continue;

}

num++;

if(num>3){

break;

}

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

}

}

}


写回答 关注

1回答

  • qq_锦城虽云乐_0
    2018-07-27 11:26:05
    已采纳

    if (scores[i]>0||scores[i]<100)改为if (scores[i]<0||scores[i]>100)

    学习使我快乐...

    非常感谢!

    2018-07-30 09:58:04

    共 1 条回复 >

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

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

1165172 学习 · 17581 问题

查看课程

相似问题