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