2015.5.20职工有薪水了

#include<iostream>
#include<string>
using namespace std;
class CPerson
{
protected:
    string m_szName;
    string m_szId;
    int m_nSex;
    int m_nAge;
public:
    CPerson(string name,string id,int sex,int age);
    void show1();
    ~CPerson(){}
};
CPerson::CPerson(string name,string id,int sex,int age)
{
    m_szName=name;
    m_szId=id;
    m_nSex=sex;
    m_nAge=age;
}
void CPerson::show1()
{
    cout<<"姓名"<<m_szName;
    cout<<"学号"<<m_szId;
    cout<<"性别"<<m_nSex;
    cout<<"年龄"<<m_nAge;
}
class CEmployee:public CPerson
{
private:
    string m_szDepartment;
    double m_Salary;
public:
    CEmployee(string name,string id,int sex,int age,string department,double salary);
    void show2();
    ~CEmployee(){}
};
CEmployee::CEmployee(string name,string id,int sex,int age,string department,double salary):CPerson(name,id,sex,age),m_szDepartment(department),m_Salary(salary){}
void CEmployee::show2()
{
    cout<<"姓名"<<m_szName;
    cout<<"学号"<<m_szId;
    cout<<"性别"<<m_nSex;
    cout<<"年龄"<<m_nAge;
    cout<<"部门"<<m_szDepartment;
    cout<<"工资"<<m_Salary;
}
int main()
{
    string name,id,department;
    int sex,age;
    double salary;
    cout<<"input employee's name,id,sex(0:women,1:man),age,department,salary:\n";
    cin>>name>>id>>sex>>age>>department>>salary;
    CEmployee employee1(name,id,sex,age,department,salary);
    employee1.show2();
        return 0;
<img src="https://img-blog.csdn.net/20150520082346355?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvd2xpdXpoaWxpbw==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="" />}
<pre class="cpp" name="code">#include<iostream>
#include<cstring>
using namespace std;
class CPerson
{
protected:
    char *m_szName;
    char *m_szId;
    int m_nSex;
    int m_nAge;
public:
    CPerson(char *name,char *id,int sex,int age);
    void show1();
    ~CPerson();
};
CPerson::CPerson(char *name,char *id,int sex,int age)
{

    m_szName=new char[strlen(name)+1];
    strcpy(m_szName,name);
    m_szId=new char[strlen(id)+1];
    strcpy(m_szId,id);
    m_nSex=sex;
    m_nAge=age;
}
void CPerson::show1()
{
    cout<<"姓名"<<m_szName;
    cout<<"学号"<<m_szId;
    cout<<"性别"<<m_nSex;
    cout<<"年龄"<<m_nAge;
}
CPerson::~CPerson()
{
    delete []m_szName;
    delete []m_szId;
}
class CEmployee:public CPerson
{
private:
    char *m_szDepartment;
    double m_Salary;
public:
    CEmployee(char *name,char *id,int sex,int age,char *department,double salary);
    void show2();
    ~CEmployee();
};
CEmployee::CEmployee(char *name,char *id,int sex,int age,char *department,double salary):
    CPerson(name,id,sex,age),m_Salary(salary)
{
    m_szDepartment=new char[strlen(department)+1];
    strcpy(m_szDepartment,department);
}
void CEmployee::show2()
{
    cout<<"姓名"<<m_szName;
    cout<<"学号"<<m_szId;
    cout<<"性别"<<m_nSex;
    cout<<"年龄"<<m_nAge;
    cout<<"部门"<<m_szDepartment;
    cout<<"工资"<<m_Salary;
}
CEmployee::~CEmployee()
{
    delete []m_szName;
    delete []m_szId;
    delete []m_szDepartment;
}
int main()
{
    char name[20],id[20],department[20];
    int sex,age;
    double salary;
    cout<<"input employee's name,id,sex(0:women,1:man),age,department,salary:\n";
    cin>>name>>id>>sex>>age>>department>>salary;
    CEmployee employee1(name,id,sex,age,department,salary);
    employee1.show2();
    return 0;
}


                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值