Grade Evaluator Program

Develop a c++ program with a Student class. A Student class contains private attributes of firstname, lastname, and scores. Student also has private method calculateGrade which calculates grade for a given score; public methods printInfo() which prints information about the Student, and getAverageGrade() which returns the grade for the average score of the student. The […]