The Task
The problem is to read student names and marks from a file, grade them and display the details (names and grades) on screen together with the highest score.
Method
Setup a class to store a student. The data is to include a first name, last name, testscore (whole number) and a grade (A..F). The class should include functions to read a student name and score from a file, to determine the grade from the score and to display that student’s details on screen. You may require other f…
