Classes and Objects

  • + 0 comments

    My C++ code

    class Student {
    
    public:
        void input() {
            for(int & score : scores) {
                cin >> score;;
            }
        }
    
        int calculateTotalScore() {
            int total = 0;
            for(int i = 0;i < 5;i++) {
                total += scores[i];
            }
            return total;
        }
    private:
        int scores[5] = {0};
    };