home *** CD-ROM | disk | FTP | other *** search
/ C++ for Dummies (3rd Edition) / C_FD.iso / CHAP09 / STUDENT.CPP < prev    next >
C/C++ Source or Header  |  1996-09-02  |  310b  |  15 lines

  1. // Student.cpp
  2. #include "student.h"
  3. float Student::addCourse(int hours, float grade) 
  4. {
  5.    float weightedGPA;
  6.  
  7.    weightedGPA = semesterHours * gpa;
  8.  
  9.    //now add in the new course
  10.    semesterHours += hours;
  11.    weightedGPA += grade * hours;
  12.    gpa = weightedGPA / semesterHours;
  13.    return gpa;
  14. }
  15.