C语言企业员工管理系统.docxVIP

  • 14
  • 0
  • 约1.3万字
  • 约 23页
  • 2020-08-28 发布于安徽
  • 举报
C 语言——企业员工管理系统 代码部分: #include stdio.h #include stdlib.h #include string.h typedef struct employee { int num; char duty[10]; char name[10]; char sex[3]; unsigned char age; char edu[10]; int salary; char tel_office[13]; char tel_home[13]; char mobile[13]; char qq[11]; char address[31]; struct employee *next; }EMP; char password[9]; EMP *emp_first,*emp_end; char gsave,gfirst; void addemp(void); void findemp(void); void listemp(void); void modifyemp(void); void summaryemp(void); void delemp(void); void resetpwd(void); void readdata(void); void savedata(void); int modi_age(int s); int modi_salary(i

文档评论(0)

1亿VIP精品文档

相关文档