Assignment For Lab 3
Assignment For Lab 3
Use your modified class in a test program that demonstrates the class's new capabilities.
private:
string courseName; // course name for this GradeBook
string instructorName; // instructor name for this GradeBook
}; // end class GradeBook
// Fig. 3.12: Gradebook.cpp
// GradeBook member-function definitions. This file contains
// implementations of the member functions prototyped in GradeBook.h
#include <iostream>
#include "GradeBook.h" // include definition of class GradeBook
using namespace std;