Letter Grade Conversion

From CompSciWiki
Revision as of 15:08, 4 December 2011 by JordanW (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 (Excellent work)
B: 70-79 (Very Good)
C: 60-69 (Average)
D: 50-59 (Below Average)
F: 0-49 (Below Average)
Prompt the user to input a letter grade (between 0 and 100). Output the letter grade and a brief grade description (such as "Excellent work"). Use Scanner for input and System.out for output. Ensure that necessary validity checks are done in the program to prevent invalid (numerical) input. Use constants for the letter grade ranges.

 

...by students

This problem was part of the midterm I wrote when I was in COMP 1010 (which was known as 74.101 when I took it). The problem was in the form of a multiple choice question, and asked what letter grade would be generated in the provided code. I was confident in my answer, but later found out that I was wrong. I made the mistake of assuming what the code would generate, instead of actually mapping out the answer. When doing if statements, I learned to test variables and evaluate them using the provided conditions, instead of assuming that the solution in my head is what the program actually does.

Solution

First, figure out which constants need to be declared. Remember that declaring constants guarantee that these values will not change.

 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; 

Hint: This program uses Scanner for input. Remember to import the Scanner code.

 import java.util.Scanner; 

Code

Solution Code

Back to the Program-A-Day homepage