/********************************************************************* C201 Computer Programming II Fall 2006 Dana Vrajitoru & A test program for the class Student_rec. **********************************************************************/ #include "student_rec.h" #include using namespace std; int main() { const int nc = 5; float g[nc] = {3, 4, 4, 3.5, 4}; Student_rec john; john.Input_rec(); john.Compute_gpa(g, nc); john.Output_rec(); return 0; }