Letter Grade Conversion

From CompSciWiki
Revision as of 02:09, 8 April 2010 by EricaP (Talk | contribs)

Jump to: navigation, search

Back to the Program-A-Day homepage

Problem

Create a program that converts a numerical grade to its corresponding letter grade. The letter grades that need assigning are (Please note that the following ranges are inclusive):
A : 80-100 (Above Average)
B: 70-79, C: 60-69 (Average)
D: 50-59, F: 0-49(Below Average)
Your first task is to assign the numerical range for each corresponding letter. Then, you must provide the user which category the grade falls on. For example, if the user typed in "78" as the input and is considered as a B, you must also output its category as "Average". Only grades between 0-100(inclusive) are considered valid. Input must be handled using JOptionPane.showInputDialog(), and output using System.out.println(). Ensure that necessary validity checks are done in the program to prevent invalid input.

 

...by students

Hello there

Solution

Before attempting to program the solution, you need to first figure out which constants need to be declared. Remember that declaring constants guarantee that these values will not change. One obvious set to be instantiated would be the letter grades. These letter grades can be declared as chars, as they only need one character to be stored. The next set of constants that need to be declared are the numerical range of each letter grade. Since declaring the actual range of the letters will only increase the difficulty of the solution, the minimum of each letter grade will suffice. The maximum grade that can be earned should be declared as a constant as well, to ensure the validity of the input. Finally, the categories must be declared as constants since these values do not change. Notice that all the names of the constants follow programming standards.

       final int MAX_GRADE = 100;
        
        final int MIN_A = 80;
        final int MIN_B = 70;
        final int MIN_C = 60;
        final int MIN_D = 50;
        final int MIN_F = 0;
        
        final char LET_A = 'A';
        final char LET_B = 'B';
        final char LET_C = 'C';
        final char LET_D = 'D';
        final char LET_F = 'F';

        final String ABOVE_AVG = "The grade is above average.";
        final String AVG = "The grade is average.";
        final String BELOW_AVG = "The grade is below average.";

The next step is to declare the variables. You will need a String variable to handle user input, an int variable to convert the String input to a comparable value, and another String variable to handle the result category.

        String input;               //The string that the user inputs will be stored here.
        int grade;                    //An int is needed to convert the String input for integer comparison.
        String result="";         //The String needed for output.

Now that all constants and variables are declared, it is time to code the rest of the program. For JOptionPane to work on your program, ensure that this piece of code is insterted at the beginning of your program:

import javax.swing.JOptionPane;

To generate input from the user, assign JOptionPane.showInputDialog to your input string. After this is done, the string input must be converted to an int.

        //The program asks the user for a numerical grade.
        input = JOptionPane.showInputDialog("Please enter the numerical grade to be converted: ");
        
        //Integer.parseInt converts a String to an int.
        grade = Integer.parseInt(input);

Then, the first layer of if statements need to be created to check the validity of the user input. The first set of conditions need to ensure that the input is between 0-100(inclusive). If this condition fails, a message needs to be sent to the user that provide proper feedback on what values are valid.

if(MAX_GRADE >= grade && grade >= MIN_F) 
{

}
else
{
      result = "Error: not a valid numerical grade.  Enter a number between 0-100(inclusive)";
}

The categories and letter grades will be handled inside the first set of conditions. The next layer of if statements determine which category the current grade belongs to, and inside these will be the layer of if statements that determine the exact letter grade conversion. Since the minimum of each letter grade is declared, the first condition of each layer of evaluation need to be in descending order.

            //The second layer of nested if statements determine
            //what category the numerical grade is in.  This layer
            //is nested inside a validity check to ensure that any
            //invalid input will not generate a valid output.
            if(grade >= MIN_A)
            {
                System.out.print(LET_A);
                result= ABOVE_AVG;
            }
            else if(grade >= MIN_C)
            {
                //The third layer of nested if statements determine
                //the letter grade value of the numerical grade.  The
                //letter is printed out without the next line so the
                //output looks continuous.
                if(grade >= MIN_B)
                {
                    System.out.print(LET_B);
                }
                else
                {
                    System.out.print(LET_C);
                }
                result = AVG;
            }
            else if(grade >= MIN_F)
            {
                if(grade >= MIN_D)
                {
                    System.out.print(LET_D);
                }
                else
                {
                    System.out.print(LET_F);
                }
                result = BELOW_AVG;
            }
            System.out.print(": ");

Since the letter grade is printed within the if statements, the only thing missing is the category. This can be printed at the end of the program, and output will still look continuous because there was no extral line printed.

System.out.println(result);

Code

Solution Code

Back to the Program-A-Day homepage