Question: cpp Modify the program you wrote previously, for the A Very Grading Problem programming assignment, to incorporate arrays into your program. Use two arrays: one

cpp
Modify the program you wrote previously, for the "A Very Grading Problem" programming assignment, to incorporate arrays into your program.
Use two arrays: one for the four exam weights and one for the four exam grades (for one student at a time).
Do not use an array to hold all the students in the class; it is not necessary for the processing of this program.
Program Assignment:
Write a program to provide a report of student grades. Each student is given four exams. The final grade of each student is determined by calculating the weighted average of all the exams. Your report should show the average of each student, the class average, and the maximum and minimum grades for the class.
The first set of data input contains the weights (proportions) for the four exam grades. Next, input the number of students in the class. The set of data input for each studentcontains the following information:
-- Student's name
-- Student's ID
-- Grade for exam 1
-- Grade for exam 2
-- Grade for exam 3
-- Grade for exam 4
Use the following test data:
-- weights for exams: .10,.20,.25,.45
-- number of student: 15
-- first student record: 101101032,75,87,79,92
-- make up the rest yourself.
Your output should be neat and readable with appropriate headings.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!