Write a completeC++program to do the following:
Prompt the user to enter the number of students and store it into a variable called numStudentsValidate the input, so that a 0 or a negative number will not be accepted.
-For each student:
1-Read the name of the student, the midtermExam grade (int), the finalExam grade (int) and the curve (int).Validate each of the three numeric inputs, so that a 0 or a negative number will not be accepted.2-Call a function named calcAverage that will receive as parameters the midtermExam and the finalExam and will return their average as a decimal number as a reference parameter.
3-Call a function named printStudent that will receive the name of the student, the average returned by calc Average and the curve. The function will print the name of the student and the message “COURSEPASSED” if the sum of the average and the curve is greater than or equal to 60, or the message“COURSE FAILED” if the sum of the average and the curve is below 60.
At the end of the program, print the highest grade on the final exam.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here