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

数组输入出什莫问题了

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

 }



提问者:qq_宇_35 2017-08-02 19:39

个回答

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

    7个数组啊,你写6个?