Question: Write C++ program to calculate average for three different students scores in a test that is out of 100. Each score can only be an
Write C++ program to calculate average for three different students scores in a test that is out of 100. Each score can only be an integer value between 0 and 100 however there is no need for validation here. The three scores must be inputted from the keyboard. For example, a score of 59 , 61 and 62 is shown below.

Then average is displayed to 2 decimal places as shown below. You must use the above input values for scores when testing your work for submission Again, style of program is very important here. You must document your work. You must indent code properly. You must also name your variables with descriptive names. You must space out work for clarity. Use proper indentation.
Enter score 1 : 59 Enter score 2 : 61 Enter score 3 : 62 Average = 60.67 (Ctrl)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
