Question: C# Programming: Write a program named TestScoreList that accepts eight int values representing student test scores. Display each of the values along with a message
C# Programming:
Write a program named TestScoreListthat accepts eight int values representing student test scores.
Display each of the values along with a message that indicates how far it is from the average.
An example of how the results should be output is as follows:
Test # 0: 89 From average: 6
Test # 1: 78 From average: -5

+TestScoreList.cs Instructions Write a program named TestscoreList that accepts eight int values representing student test scores 1 using System; 2 using static System.Console; 3 class TestScoreList 4 5static void Main() Display each of the values along with a message that indicates how far it is from the average /I Write your main here 9 An example of how the results should be output is as follows: 89 From average: 78 From average: Test # 0: Test # 1: GRADING
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
