Guest User

Untitled

a guest
Apr 22nd, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. #include <fstream>
  2. #include <iostream>
  3. #include <cstring>
  4. #include <string>
  5. #include <iomanip>
  6. #include <cstdlib>
  7. #ifndef STDNT
  8. #define STDNT
  9. using namespace std;
  10.  
  11. class student{
  12. private:
  13. float hpTotalScore, testsTotalScore;
  14. float gradeInt;
  15. int stuHomeworkParticipationScores[10];
  16. int stuTestScores[4];
  17. char letGrade;
  18. string stuID, stuName;
  19. public:
  20. string setName(string name);
  21. string setID(string id);
  22. int setHPScores(int hpScores[]);
  23. int setTestScores(int tScores[]);
  24. };
  25. #endif
Add Comment
Please, Sign In to add comment