Question: Implement a Java program that simulates a college GPA calculator. This program will prompt the user to enter three grades to calculate. The program will
Implement a Java program that simulates a college GPA calculator. This program will prompt the user to enter three grades to calculate. The program will convert these numeric grades into letter grades using a predefined grading scale and calculate the GPA accordingly.
Define final floatingpoint constant variables representing the numeric values for each letter grade as follows:
A
A
B
B
B
C
C
C
D
D
D
F
Grading Scale: Use the grading scale from the course syllabus to determine the letter grade based on the numeric input:
and above
A
B
D
A
C
D
B
C
D
B
C
F
Implementation Details
Use separate variables for each grade.
For each grade, ask the user to input the numeric value.
Use decision structures eg ifelse or switch statements to determine the corresponding letter grade based on the numeric input.
Compute the numeric average of all grades entered.
Display the final GPA as both a numeric average and a letter grade, along with the equivalent GPA value.
Use concepts covered in chpters only.
Note: Be sure to use the program rubric.
Output: Your program will use decision structures to determine the letter grade for each number and display the output based on the numbers provided by the user. Your program must format both the numeric GPA and college GPA to two floatingpoint decimals.
Naming Convention: CollegeGPACalculator
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
