📄 empoyee.cpp
字号:
// empoyee.cpp: implementation of the empoyee class.
//
//////////////////////////////////////////////////////////////////////
#include "empoyee.h"
#include"persons.h"
#include<iostream.h>
#include<iomanip.h>
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
empoyee::~empoyee()
{
}
void empoyee::print()
{
cout<<setw(9)<<"employee:"<<setw(10)<<name;
cout<<setw(5)<<"age:"<<setw(5)<<age;
cout<<setw(5)<<"sex:"<<setw(5)<<sex;
cout<<setw(8)<<"salary:"<<setw(8)<<salary<<endl;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -