#ifndef course_h
#define course_h

class Course {
private:
    int math, english, computer;
public:
    Course();
    Course(int a, int b, int c);
    void setMath(int v);
    void setEnglish(int v);
    void setComputer(int v);
    int getMath() const;
    int getEnglish() const;
    int getComputer() const;
    int getSum() const;
    double getAverage() const;
    void printScore() const;
};

#endif