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

不需要调用和判断吧,为什么弄这么复杂呢,不懂

public static void main(String[] args) {          double [] scores={89,-23,64,91,119,52,73};        Arrays.sort(scores);        System.out.println("全班前三名是:");        for (int i=scores.length-3;i<scores.length;i++){            System.out.println(scores[i]);            不需要调用和判断吧,为什么弄这么复杂呢,不懂

提问者:慕神454968 2017-08-27 17:43

个回答

  • 潇丶潇
    2017-08-28 10:29:36

    你这里没判断大于100和小于0的情况啊

  • 不到160不改名
    2017-08-27 22:20:27

    你这样输出的是89 -23 64