#ifndef SCORE_H #define SCORE_H #include using namespace std; class Score { private: string name; int math; public: Score(string name, int math); void setName(string name); void setMath(int math); string getName(); int getMath(); }; #endif