LAB 7: Student Scores

Due: 9:30 am, Tuesday, 10/15/02

Write a program that reads student's names followed by their test scores. The program should output each student's name, followed by the test score and relevant grade. It should also find and print the highest test score and the name(s) of students having the highest test score.

Student data should be stored in a struct variable of the type Student, which has 3 components:
name (string), score (int, btw 0-100), and grade (char). Suppose that the class has 5 students. Use an array of 5 elements (of type Student).

The grades are assigned as follows:
90-100: A
80-89: B
70-79: C
60-69: D
below 60: F