Question: Write C++program that is to be used by university instructors to calculate the final grade for each student in their courses. In order to save
Write C++program that is to be used by university instructors to calculate the final grade for each student in their courses. In order to save time, we will generate the grades for the students (instead of inputting them) as follows: Each student has three grades: course work, mid, and final. Each mark is out of 100. The weight for the three marks are as follows: Course work = 35%, mid = 20%, & final = 45%. The program starts: 1. Asking the user (instructor) to input the number of students in the class. 2. Generating 3 grades for each student and stores them in three different array. 3. Compute the letter grade as follows: a. 90 & above = A b. 80 to 89 = B c. 70 to 79 = C d. 6O to 69 = D e. Below 60 = F The program output is a summary of the grades (i.e. the number of As, Bs, Cs, Ds, and Fs). The program terminates or (this is for an additional credit) ask the user if he/she wants to enter the grades for another course
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
