Write a complete C++ program that does the following. Allows input for three grades for 10 students. It then displays the students three grades, their average, and their variance from the class average followed by the class average and how many students where above and below the average. Your output should look exacly lik this (decimals rounded to one decimal):
Student #1 100 95 95 97.7 17.7
above the average
Student #2 75 70 67 70.7 9.3
below the average
..........
Student #9 70 90 70 76.7 4.3
below the average
Student #10 75 80 63 72.7 7.3
below the average
The class average was 80.0
6 students scored above the average
4 students scored below the average