第十一周实践项目3————警察与厨师(1)

问题及代码:
/*copyright(c)2016.烟台大学计算机学院
 * All rights reserved,
 * 文件名称:text.Cpp
 * 作者:吴敬超
 * 完成日期:2016年5月4日
 * 版本号:codeblock
 *
 * 问题描述:  警察和厨师
 * 输入描述:
 * 程序输出: 输出结果
 */
#include<iostream>
using namespace std;
class Person
{
public:
    Person(int a,string nam);
    void action();
    string getName()
    {
        return name;
    }
protected:
    int age;
    string name;
};
Person::Person(int a,string nam)
{
    age=a;
    name=nam;
}
void Person::action()
{
    cout<<name<<" do some action"<<endl;
}
class Police:public Person
{
public:
    Police(int a,string nam,int le);
    void arrest(Person);
protected:
    int level;
};
Police::Police(int a,string nam,int le):Person(a,nam),level(le){}
void Police::arrest(Person p)
{
    cout<<" Police "<<getName()<<" arrest " <<p.getName()<<endl;
}
class Cook:public Person
{
public:
    Cook(int a,string nam,double salary);
    void getCake(int );
protected:
    double salary;
};
Cook::Cook(int a,string nam,double s):Person(a,nam),salary(s){}
void Cook::getCake(int n)
{
    cout<<" Cook "<<getName()<<" gave me " <<n<<" cakes."<<endl;
}

int main()
{
    Person tom(120,"Tom");
    Police jack(30,"Jack",2);
    Cook john(24,"John",5000);
    jack.arrest(tom);
    john.getCake(4);
    return 0;
}
运行结果:
第十一周实践项目3————警察与厨师(1)_第1张图片

你可能感兴趣的:(第十一周实践项目3————警察与厨师(1))