Guest User

Course head

a guest
Nov 2nd, 2011
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #ifndef COURSE_H
  2. #define COURSE_H
  3. class course
  4. {
  5. public:
  6.     course(int pubAnswers[4]);
  7.     void courseWrite();
  8.        
  9. private:
  10. int numberRightOverall;
  11. int numberRightVersion[4];
  12. int a,b,c,d;
  13. };
  14.  
  15. #endif
  16.  
Add Comment
Please, Sign In to add comment