You are viewing a single comment's thread. Return to all comments →
class Student { private: int scores[5]; int totalScore = 0; public: void input() { for (int i = 0; i < 5; i++) { std::cin >> scores[i]; totalScore += scores[i]; } } int calculateTotalScore() { return totalScore; } };
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 →