#ifndef TEACHER_H
#define TEACHER_H
#include <string>
using namespace std;

class Teacher {
private:
    char name[30];
    int age;
    double score;
public:
    Teacher();
    Teacher(string a, int b, double c);
    void setName(string v);
    void setScore(double v);
    void setAge(int v);
    string getName() const;
    int getAge() const;
    double getScore() const;
    void print() const;
};

#endif