Computers and Technology

Write a program that a c++ program that can be used to determine grades at the end of the semester. for each student, who is identified by an integer number between 1 and 60, four examination grades must be kept. additionally, two final grade averages must be computed. the first grade average is simply the average of all four grades. the second grade average is computed by weighting the four grades as follows: the first grade gets a weight of 0.2, the second grade gets a weight of 0.3, the third grade a weight of 0.3, and the fourth grade a weight of 0.2; that is computed as:
0.3*grade1 + 0.2 *grade2 + 0.2 * grade3 + 0.3 * grade4

answer
Answers: 1

Similar questions

Do you know the correct answer?
Write a program that a c++ program that can be used to determine grades at the end of the semester....

Questions in other subjects: