Hello all! So im taking a C++ class and I'm supposed to make a grade book program that will take in 6 programs grades and 2 test grades, then multiple the average of each by 50% and add them together for a letter grade... So that was the first project which i've already completed and got a 100 on..
Now im supposed to do the following with the same program:
You are to implement the various grade entry and calculation routines using a class object that includes (minimumly) the following public methods:
enterProgramGrades()
enterTestGrades()
calculateAverage()
displayAverage()
displayLetterGrade()
calculateGradeToMakeOnFinalExam()
displayGradeToMakeOnFinalExam()
You are free to include any additional methods to solve this problem, as well as any private member data.
.. and I don't now I don't know how to do that. I know I'm supposed to use a header file or something, but I don't how to use them. Any help is highly appreciated..