Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2011
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.58 KB | None | 0 0
  1. //Exam.h
  2. #ifndef EXAM_H
  3. #define EXAM_H
  4.  
  5. class Exam
  6. {
  7. public:
  8.         void getKey(int[100][2]);
  9.         int setTests(int[100][2]);
  10.         void writeExam(int);
  11.         void findCorrect(int pubAnswers[100]);
  12.         void correctSecOne(int pubAnswers[100]);
  13.         void correctSecTwo(int pubAnswers[100]);
  14.         void printReport();
  15.         void WriteResults(int a);
  16.         Exam();
  17. private:
  18.         //Key for the Exam
  19.         int key[100][2];
  20.         //Number of correct answers
  21.         int correctOver;
  22.         //Number right per Section
  23.         int rightPerSecOne;
  24.         int rightPerSecTwo;
  25.        
  26.  
  27. };
  28.  
  29. #endif
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement