Use a two-dimensional array to store test grades.
- GradeBook.h - definition of class
GradeBook
- GradeBook.cpp - implementation of
member functions. Note that when calling getAverage(),
the argument "grades[ student ]" is a one-dimensional array.
- The main program creates a GradeBook object
using a two-dimensional array, then invokes member function
"processGrades" to analyze them.