#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;
}
2015.5.20职工有薪水了
最新推荐文章于 2024-09-27 11:15:13 发布