m0_52497657: # include <iostream> # include <string> # include <iomanip> # define max 1000 //定义最大的数组下标 # define NULL 0 //定义NULL为0 typedef struct node //定义员工结构体 { char num[10]; //工号 char name[10]; //姓名 char sex[4]; //性别 char age[4]; //年龄 char degree[20]; //学历 char wage[20]; //工资 char telnum[20]; //电话 char address[100]; //住址 node *next; //指针域
不定期搬运二次元福利
C++课程设计:职工综合信息管理系统