Write a program to accept the input of 10 students\' test scores in the range 0-
ID: 3643226 • Letter: W
Question
Write a program to accept the input of 10 students' test scores in the range 0-100. The program should then calculate the Highest test score as well as the average test score, and then print on screen the total number of A/B/C/D/F scores based upon a 90/80/70/60 scale.This program should process on screen similar to the following:
==================================
Enter 10 test scores: 40 30 45 90 62 86 97 83 58 87
The average test score is: 67.8
The highest test score is: 97
As: 2
Bs: 3
Cs: 0
Ds: 1
Fs: 4
==================================
Be sure to use an array to store the 10 test scores.
i need to use: int main()
and void statements that are defined outside of main