都江堰维罗纳小镇价格:vc的问题

来源:百度文库 编辑:高考问答 时间:2024/05/02 06:18:06
谁可以帮我做一个学院的管理系统 很简单的做就可以了啊 只要对各种人员进行抽象成类(如教员,学生,职工,管理员4个类)具体的成员变量自己根据需要定并写示范程序使用各个类实现调用

谢谢 啊
用vc++做呀 哪位愿意帮忙啊

class people
{
public:
char name[20];
int age;
bool sex;
char memo[255];
void Action();
};

class techer : public people
{
private:
int Level;
int Salary;
int Type;
public:
techer();
SetLevel(int x);
...
};
class student : public people
{
private:
int Level;
int Id;
public:
...
};
class manager : public people
{
private:
...
};

void main()
{
techer zhang;//张老师
student wang;//王学生

strcpy(zhang.name,"张某 ");
zhang.age=30;
char &temp=zhang.memo;
temp="个人说明:张某:土匪,是个猪头三........."
...
}