home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C++ for Dummies (3rd Edition)
/
C_FD.iso
/
CHAP08
/
CHAP08_3.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-15
|
277b
|
14 lines
// 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;
}