1

程序成功编译并运行。但是,最低分数的值是错误的,我再次检查并无法弄清楚为什么请帮我解决这个问题

/* import neccessary component for the program*/
import java.util.*;

public class assign4 {

    /* create a input stream*/ 
    static Scanner console = new Scanner(System.in);

    public static void main(String[]args) {

        /* declare variables and strings*/
        int[] score;

        score = new int[10];
        String[] name;

        name = new String[10];
        String header = String.format("%10s%10s%8s%n", "Name", "Score", "Grade");
        int min = score[0];
        int max = score[0];
        char grade[];

        grade = new char[10]; 
        int maxindex = 0;
        int lowindex = 0;

        for (int i = 0; i <= 9; i++) {

            /* Get user's input for student's name and score*/   
            System.out.println("Please enter the student's name.");
            name[i] = console.nextLine();
            System.out.println("Please enter the student's score.( 0-100 )");
            score[i] = console.nextInt();

            if (score[i] > 80) {
                grade[i] = 'A';
            } else if (score[i] > 65) {
                grade[i] = 'B';
            } else if (score[i] > 40) {
                grade[i] = 'C';
            } else if (score[i] > 20) {
                grade[i] = 'D';
            } else {
                grade[i] = 'E';
            } 

            /* when the score is higher than the score, it become maximum score*/
            if (score[i] > max) {
                max = score[i];
                maxindex = i;
            } /* when the score is lower than the score, it become minimum score*/ else if (score[i]
                    < min) {
                min = score[i];
                lowindex = i;
            } /* when the score neither lower or higher than the score, it will be ignored and program         
             do nothing*/ else {} 

            /* avoid scanner skipping in order to capture user's input */
            console.nextLine();
        }

        /* print out the stored information of the students and show higest and lowest score */
        System.out.println();
        System.out.print(header);
        for (int i = 0; i <= 9; i++) {
            System.out.printf("%10s%10d%8s%n", name[i], score[i], grade[i]);
        } 
        System.out.printf("%s obtains lowest score of %d%n", name[lowindex], min);
        System.out.printf("%s obtains higest score of %d%n", name[maxindex], max); 

    }
} 

程序目的是收集10个人的分数和姓名,然后打印出姓名、分数、最高分、最低分和等级。另外,我刚加入这个网站,如果我提出和询问的方法是错误的,请告诉我,我很抱歉

4

1 回答 1

1

您将其初始化int min = score[0];为 0,因为scoreint[]以 0 作为每个条目的默认值。

您可能不会得到任何低于 0 的分数,因此if(score[i]<min)仅适用于负值。尝试min用初始化Integer.MAX_VALUE

max用初始化也是一个好习惯Integer.MIN_VALUE,但在你的情况下应该没关系。

于 2012-11-12T17:49:29.337 回答