📄 employeestruct.h
字号:
#ifndef _EMP_H_
#define _EMP_H_
#include <string>
using namespace std;
struct employee //职工结构:struct employee
{
bool IncomeType; //收入类型 Bool IncomeType (1=pay,2=income)
int number; //职员编号 Int number (1~50000)
string mmdd; //收入时间 CString MM/DD (个人觉得好象这个变量没有用)
double money; //收入金额 Double money (0~1000000)
double tax; //个人应缴所得税 Double tax
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -