Question: Must use C++ to code Create a grade book program using this pseudocode as a guide. Display a user-friendly welcome message. Ask the user how
Must use C++ to code
Create a grade book program using this pseudocode as a guide. Display a user-friendly welcome message. Ask the user how many students are in the class, between 1 and 35. Validate the input. For each student in the class: Get the student's full name. Ask the user how many tests to enter, between 2 and 5. Validate the input. For each test Enter the test scores between 0 and 100. Validate the input. Accumulate the total Repeat for all test Calculate the average test score, dropping the low score. Assign a letter grade, A, B, C, D or F using a standard grading scale. Output the student's name, average and letter grade. Repeat for all students. Ask the user if she wishes to run the program again. Enter y/n. Validate the input. Repeat the program if the user enters y or Y.
Note: please use- two nested For loops, While loops for validation, and a do-while loop for running the program again. Do NOT use arrays.
Must use C++ to code - Microsoft Visual Studio is being used .
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
