Advertisement
Guest User

Untitled

a guest
Dec 1st, 2015
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class Student
  2. {
  3. public:
  4.  
  5. void Input()
  6. {
  7. for (int i {0}; i < 5; ++i)
  8. {
  9. int score;
  10. cin >> score;
  11.  
  12. total_score += score;
  13. }
  14. }
  15.  
  16. int CalculateTotalScore() const
  17. {
  18. return total_score;
  19. }
  20.  
  21. private:
  22.  
  23. int total_score = 0;
  24. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement