Discussion:
Q: Create a program that will read a list of student last names and three integer value scores in the range 0-100.
The names and scores should be stored in an array of the following data structures:
char[] - name
int[] - three test scores
double - student average
After reading in the data, the program should calculate the average for each student and store it in the appropriate field. The program should then sort the array by the students' last name and then print the last name and average (formatted nicely)