Guest User

instructor head

a guest
Nov 2nd, 2011
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1. //Instructor.h
  2. #ifndef INSTRUCTOR_H
  3. #define INSTRUCTOR_H
  4. class Instructor
  5. {
  6. public:
  7.         Instructor();
  8.         void findAllCorrect();
  9.         void writeReportIn();
  10.        
  11.         void LoadData(int pubAnswers[2][4][16][100]);
  12.  
  13.  
  14. private:
  15.         int overallCorrect;
  16.         int overallPerSection[2][4];
  17.         int instructorOneCorrect;
  18.         int instructorTwoCorrect;
  19.         int RawData[2][4][16][100];
  20. };
  21. #endif
  22.  
Add Comment
Please, Sign In to add comment