#include //#include using namespace std; #ifndef STUDENT_H #define STUDENT_H class student { public: student(); student(int, int[]); void readStudent(); void assignGrade(); void calcAverage(); void writeStudent(); //string getName(); int getId(); char getGrade(); void getAllScores(int[], int&); int getScore(int index); float getAverage(); private: enum {NUM_EXAMS = 4}; //string name[20]; int id; char grade; int scores[NUM_EXAMS]; float average; }; #endif