home *** CD-ROM | disk | FTP | other *** search
- // Chap08_3.c to build this program properly you must
- // include Student.cpp in your project
- #include "student.h"
-
- Student s;
- Student t;
- int main()
- {
- s.addCourse(3, 4.0); //hereÆs an A+
- t.addCourse(3, 2.5); //give this guy a C
- return 0;
- }
-
-