I need to write a program as following: Write, test and debug a program to calculate and output the minimum, maximum, and
average of a list of positive test scores. Ask the user how many scores s/he intends to enter.
Assume exactly that many scores will be entered one per line. Prompt for each score. Here is the
example program dialog:
Enter the total number of scores: 4
Enter the scores:
Score 1 10
Score 2 36
Score 3 5.5
Score 4 0.5
The minimum is: 0.5
I've been trying to write the program to calculate the average of a user's input of test scores. Please help me, my professor won't explain sh**. to us .