Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started