home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C++ for Dummies (3rd Edition)
/
C_FD.iso
/
CHAP08
/
STUDENT.H
< prev
Wrap
C/C++ Source or Header
|
1996-09-02
|
212b
|
11 lines
// Student.h
class Student
{
public:
int semesterHours; //hours earned toward graduation
float gpa;
//add a completed course to the record
float addCourse(int hours, float grade);
};