考试成绩如果用外部输入的话,代码怎么实现

来源:7-1 编程练习

清晨得曙光

2016-12-11 23:22

就是成绩用Scanner输入的

写回答 关注

2回答

  • 慕粉111239980
    2016-12-13 17:21:11

    无法解析的时候可以看看是不是少了大括号什么的

  • 慕前端8337980
    2016-12-12 04:03:23
    import java.util.*;
    
    public class HelloWorld {
        
        //完成 main 方法
        public static void main(String[] args) {
            Scanner sc = new Scanner(System.in);
            // ArrayList<Integer> input = new ArrayList<>();
            System.out.println("How many scores: ");
            if (sc.hasNextInt()){
                int number = sc.nextInt();
                int[] inputScore = new int[number];
                for (int i = 0; i < number; i ++){
                    System.out.println("Input score:");
                    inputScore[i] = sc.nextInt();
                }
            }
            top3(inputScore);
            // while (sc.hasNextInt()){
            //     input.add(sc.nextInt());
            // }
            
            // int[] scores = new int[]{89 , -23 , 64 , 91 , 119 , 52 , 73};
            // top3(scores);
            
            
        }
        
        //定义方法完成成绩排序并输出前三名的功能
        public static int[] top3(int[] scores){
            int[] result = new int[3];
            int count = 0;
            Arrays.sort(scores);
            for (int i = scores.length - 1; count < 3 && i >= 0; i --){
                if (scores[i] >= 0 && scores[i] <= 100){
                    result[count++] = scores[i];
                }
            }
            System.out.println(Arrays.toString(result));
            return result;
        }


    清晨得曙光

    为什么在eclipse上显示18行的inputScore变量无法解析啊

    2016-12-12 21:32:00

    共 1 条回复 >

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

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

1165172 学习 · 17581 问题

查看课程

相似问题