Question: Write a C++ program to read in 10 test scores in the 0 to 100 range from the user and print each out as a
Write a C++ program to read in 10 test scores in the 0 to 100 range from the user and print each out as a percentage.
- Declare a variable for the test score that you reuse on each loop iteration.
- Declare a constant for the number of loop iterations.
- Write a for loop that
- accepts user input of one test score per loop iteration.
- calculates and outputs the percentage.
- Assume the user will input a number between 1 and 100.
- Sample output
Test #1 Score is 75%
Add debugging print statements throughout and test data comment at the end of the program.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
