Guest User

Untitled

a guest
Jan 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. //Exam.h
  2. #ifndef INSTRUCTOR_H
  3. #define INSTRUCTOR_H
  4. class Instructor
  5. {
  6. public:
  7.     void writeReportIn();
  8.     void calcSectionAnswers();
  9.  
  10.  
  11. private:
  12.     int overallCorrect;
  13.     int overallPerSection[2][4];
  14.     int instructorOneCorrect;
  15.     int instructorTwoCorrect;
  16. };
  17. #endif
Add Comment
Please, Sign In to add comment