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

结果测试结果测试

https://img1.mukewang.com/5b5011d800011e0008920617.jpg结果测试结果测试

提问者:Lariety 2018-07-19 12:22

个回答

  • 井尔i
    2018-07-19 19:35:44

    https://img1.mukewang.com/5b50777800015dc319201080.jpg我的写法,希望对你有用

  • 慕哥2573284
    2018-07-19 17:27:36

    Java方法中:最后一个for循环放进上一个for循环当中改为:

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



  • 孙崖月
    2018-07-19 15:03:47

    老哥,第一,你判断大于100或小于0用了&&,应该用||,第二,你只是计数,没有改变数组里面的值,所以后面你输出的还是最小的三个,给你我的程序你参考下。

    import java.util.Arrays;

    public class HelloWorld {

       

        //完成 main 方法

        public static void main(String[] args) {

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

            Arrays.sort(scores);

            HelloWorld hello=new HelloWorld();

            hello.Max(scores);

        }

        

        //定义方法完成成绩排序并输出前三名的功能

        public void Max(int[] x){

            int y=x.length-1;

            for (int i=y-1,j=0;i>=0&&j!=3;i--){

                if(x[i]>100||x[i]<0) continue;

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

                j++;

            }

        }

    }