Question 2: Student Grades Report Java Program In this question, write a complete Java program to prompt the student for a sequence of courses with its grade in the format of “Course1|Grade1;Course2|Grade2;Course3|Grade3;” as one string. Your program should separate the string into the course name and grade individually and save the course names and grades in two different arrays (2D-character array for course names and integer array for grade) and display the list of courses, average of the grades as a numerical value and letter accordingly. You can expect a perfect user who will enter the correct format. Your program should work for any numbers of course that were entered. Note: The table below depicts the numerical grades and their corresponding letter grade. Letter Grade Numerical Value A ≥88 B ≥ 80 C ≥ 67 D ≥ 60 F < 60
Question 2: Student Grades Report Java
In this question, write a complete Java program to prompt the student for a sequence of courses
with its grade in the format of “Course1|Grade1;Course2|Grade2;Course3|Grade3;” as one string. Your
program should separate the string into the course name and grade individually and save the course
names and grades in two different arrays (2D-character array for course names and integer array for
grade) and display the list of courses, average of the grades as a numerical value and letter accordingly.
You can expect a perfect user who will enter the correct format. Your program should work for any
numbers of course that were entered.
Note: The table below depicts the numerical grades and their corresponding letter grade.
Letter Grade | Numerical Value |
A | ≥88 |
B | ≥ 80 |
C | ≥ 67 |
D | ≥ 60 |
F | < 60 |
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images