You are viewing a single comment's thread. Return to all comments →
class Student { private: int scores[5]; public: void input() { for (int i = 0; i < 5; i++) { cin >> scores[i]; } } int calculateTotalScore() { int sum = 0; for (int& score : scores) { sum += score; } return sum; } };
Seems like cookies are disabled on this browser, please enable them to open this website
Classes and Objects
You are viewing a single comment's thread. Return to all comments →