Write a program to keep records and perform statistical 
          analysis for a class of students. The class may have up to 
          40 students. There are five quizzes during the term. Each 
          student is identified by a four-digit student number.
 
          The program will print the student scores and calculate 
          and print the statistics for each quiz. The output is in 
          the same order as the input; no sorting is needed. The 
          input will be read from a text file. The output from the 
          program should be similar to the following: 
         
           
Student      Quiz 1 Quiz 2 Quiz 3 Quiz 4 Quiz 5
1234            78     83     87     91     86
2134            67     77     84     82     79
3124            77     89     93     87     71
High Score      78     89     93     91     86
Low Score       67     77     84     82     71
Average        73.4   83.0   88.2   86.6   78.6
           
         
Use one- and two-dimensional arrays only. Test your program with the following quiz data: 
         
           
Student      Quiz 1 Quiz 2 Quiz 3 Quiz 4 Quiz 5
1234            52      7    100     78     34
2134            90     36     90     77     30
3124           100     45     20     90     70
4532            11     17     81     32     77
5678            20     12     45     78     34
6134            34     80     55     78     45
7874            60    100     56     78     78
8026            70     10     66     78     56
9893            34      9     77     78     20
1947            45     40     88     78     55
2877            55     50     99     78     80
3189            22     70    100     78     78
4602            89     50     91     78     60
5405            11     11      0     78     10
6999             0     98     89     78     20