数组输入出什莫问题了

来源:7-1 编程练习

qq_宇_35

2017-08-02 19:39

package helloworld;
import java.util.Arrays;
import java.util.Scanner;
public class helloworld {
 public static void main(String[] args){
  //int[] scores={89,56,54,52,-53,56, 98 };
  Scanner input=new Scanner(System.in);
  int[]scores=new int[6];
  for(int i=5;i>0;i--){
   
    scores[i]=input.nextInt();
  helloworld hello=new helloworld();
  hello.show(scores);}
 }
 public void show(int[] scores){
  Arrays.sort(scores);
  System.out.println(scores[3]);
  System.out.println(scores[5]);
  System.out.println(scores[4]);
 }

 }



写回答 关注

1回答

  • 慕斯1627291
    2017-08-03 07:14:32
    已采纳

    7个数组啊,你写6个?

    qq_宇_3...

    不是的,7个数组的被我注释了,我知道怎末改了,谢谢

    2017-08-03 15:02:10

    共 1 条回复 >

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

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

1165172 学习 · 17581 问题

查看课程

相似问题