版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、C语言企业员工管理系统代码部分:#include <stdio.h>#include <stdlib.h>#include <string.h>typedef struct employee int num; char duty10; char name10; char sex3; unsigned char age; char edu10; int salary; char tel_office13; char tel_home13; char mobile13; char qq11; char address31; struct employee *ne
2、xt; EMP; char password9; 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(int s);
3、char *modi_field(char *field,char *s,int n); EMP *findname(char *name); EMP *findnum(int num); EMP *findtelephone(char *name); EMP *findqq(char *name); void displayemp(EMP *emp,char *field,char *name); void checkfirst(void); void bound(char ch,int n); void login(); void menu();void addemp() FILE *fp
4、; EMP *emp1; int i=0; char choice='y' if(fp=fopen("employee.dat","ab")=NULL) printf("打开文件employee.dat出错!n"); getch(); return; do i+; emp1=(EMP *)malloc(sizeof(EMP); if(emp1=NULL) printf("内存分配失败,按任意键退出!n"); getch(); return; printf("请输入第%d个员工的信息,n&q
5、uot;,i); bound('_',30); printf("工号:"); scanf("%d",&emp1->num); printf("职务:"); scanf("%s",&emp1->duty); printf("姓名:"); scanf("%s",&emp1->name); printf("性别:"); scanf("%s",&emp1->sex); pr
6、intf("年龄:"); scanf("%d",&emp1->age); printf("文化程度:"); scanf("%s",&emp1->edu); printf("工资:"); scanf("%d",&emp1->salary); printf("办公电话:"); scanf("%s",&emp1->tel_office); printf("家庭电话:"
7、); scanf("%s",&emp1->tel_home); printf("移动电话:"); scanf("%s",&emp1->mobile); printf("QQ:"); scanf("%s",&emp1->qq); printf("地址:"); scanf("%s",&emp1->address); emp1->next=NULL; if(emp_first=NULL) emp_fi
8、rst=emp1; emp_end=emp1; else emp_end->next=emp1; emp_end=emp1; fwrite(emp_end,sizeof(EMP),1,fp); gfirst=0; printf("n"); bound('_',30); printf("n是否继续输入?(y/n)"); fflush(stdin); choice=getch(); if(toupper(choice)!='Y') fclose(fp); printf("n输入完毕,按任意键返回n")
9、; getch(); return; system("cls"); while(1);void bound(char ch,int n) while(n-) putch(ch); printf("n"); return; /*首次使用,进行用户信息初始化*/void checkfirst() FILE *fp,*fp1; char pwd9,pwd19,pwd29,pwd39,ch; int i; char strt='8' if(fp=fopen("config.bat","rb")=NULL)
10、printf("n新系统,请进行相应的初始化操作!n"); bound('_',50); getch(); do printf("n设置密码,请不要超过8位:"); for(i=0;i<8&&(pwdi=getch()!=13);i+) putch('*'); printf("n再确认一次密码:"); for(i=0;i<8&&(pwd1i=getch()!=13);i+) putch('*'); pwdi='0' pwd1i=
11、'0' if(strcmp(pwd,pwd1)!=0) printf("n两次密码输入不一致,请重新输入!nn"); else break; while(1); if(fp1=fopen("config.bat","wb")=NULL) printf("n系统创建失败,请按任意键退出!"); getch(); exit(1); i=0; while(pwdi) pwd2i=(pwdi strt); putw(pwd2i,fp1); i+; fclose(fp1); printf("nn系统
12、初始化成功,按任意键退出后,再重新进入!n"); getch(); exit(1); else i=0; while(!feof(fp)&&i<8) pwdi+=(getw(fp)strt); pwdi='0' if(i>=8) i-; while(pwdi!=-1&&i>=0) i-; pwdi='0' strcpy(password,pwd); void delemp() int findok=0; EMP *emp1,*emp2; char name10,choice; system("
13、cls"); printf("n输入要删除的员工姓名:"); scanf("%s",name); emp1=emp_first; emp2=emp1; while(emp1) if(strcmp(emp1->name,name)=0) findok=1; system("cls"); printf("员工:%s的信息如下:",emp1->name); bound('_',40); printf("工号:%dn",emp1->num); printf(&
14、quot;职务:%sn",emp1->duty); printf("姓名:%sn",emp1->name); printf("性别:%sn",emp1->sex); printf("年龄:%dn",emp1->age); printf("文化程度:%sn",emp1->edu); printf("工资:%dn",emp1->salary); printf("办公电话:%sn",emp1->tel_office); print
15、f("家庭电话:%sn",emp1->tel_home); printf("移动电话:%sn",emp1->mobile); printf("QQ号码:%sn",emp1->qq); printf("住址:%ns",emp1->address); bound('_',40); printf("您真的要删除该员工吗?(y/n)"); fflush(stdin); choice=getchar(); if(choice!='y' &&a
16、mp; choice!='Y') return; if(emp1=emp_first) emp_first=emp1->next; else emp2->next=emp1->next; free(emp1); gsave=1; savedata(); return; else emp2=emp1; emp1=emp1->next; if(!findok) bound('_',40); printf("n没有找到姓名是:%s的信息!n",name); getch(); return;void displayemp(EM
17、P *emp,char *field,char *name) if(emp) printf("n%s:%s信息如下:n",field,name); bound('_',30); printf("工号:%dn",emp->num); printf("职务:%sn",emp->duty); printf("姓名:%sn",emp->name); printf("性别:%sn",emp->sex); printf("年龄:%dn",emp-&
18、gt;age); printf("文化程度:%sn",emp->edu); printf("工资:%dn",emp->salary); printf("办公电话:%sn",emp->tel_office); printf("家庭电话:%sn",emp->tel_home); printf("移动电话:%sn",emp->mobile); printf("QQ号码:%sn",emp->qq); printf("住址:%sn"
19、;,emp->address); bound('_',30); else bound('_',40); printf("资料库中没有%s为:%s的员工!请重新确认!",field,name); return;EMP *findname(char *name) EMP *emp1; emp1=emp_first; while(emp1) if(strcmp(name,emp1->name)=0) return emp1; emp1=emp1->next; return NULL;EMP *findnum(int num) EM
20、P *emp1; emp1=emp_first; while(emp1) if(num=emp1->num) return emp1; emp1=emp1->next; return NULL; EMP *findtelephone(char *name) EMP *emp1; emp1=emp_first; while(emp1) if(strcmp(name,emp1->tel_office)=0)| (strcmp(name,emp1->tel_home)=0)| (strcmp(name,emp1->mobile)=0) return emp1; emp1
21、=emp1->next; return NULL; EMP *findqq(char *name) EMP *emp1; emp1=emp_first; while(emp1) if(strcmp(name,emp1->qq)=0) return emp1; emp1=emp1->next; return NULL; void findemp() int choice,ret=0,num; char str13; EMP *emp1; system("cls"); do printf("t查询员工信息n"); bound('_&
22、#39;,30); printf("t1.按姓名查询n"); printf("t2.按工号查询n"); printf("t3.按电话查询n"); printf("t4.按QQ号查询n"); printf("t0.返回主菜单n"); bound('_',30); printf("n请选择菜单:"); do fflush(stdin); choice=getchar(); system("cls"); switch(choice) case &
23、#39;1': printf("n输入要查询的员工姓名:"); scanf("%s",str); emp1=findname(str); displayemp(emp1,"姓名",str); getch(); break; case '2': printf("n请输入要查询的员工的工号"); scanf("%d",&num); emp1=findnum(num); itoa(num,str,10); displayemp(emp1,"工号",s
24、tr); getch(); break; case '3': printf("n输入要查询员工的电话:"); scanf("%s",str); emp1=findtelephone(str); displayemp(emp1,"电话",str); getch(); break; case '4': printf("n输入要查询的员工的QQ号:"); scanf("%s",str); emp1=findqq(str); displayemp(emp1,"Q
25、Q号码",str); getch(); break; case '0': ret=1; break; while(choice<'0'|choice>'4'); system("cls"); if(ret) break; while(1); void listemp() EMP *emp1; printf("n资料库中的员工信息列表n"); bound('_',40); emp1=emp_first; while(emp1) printf("工号:%dn&qu
26、ot;,emp1->num); printf("职务:%sn",emp1->duty); printf("姓名:%sn",emp1->name); printf("性别:%sn",emp1->sex); printf("年龄:%dn",emp1->age); printf("文化程度:%sn",emp1->edu); printf("工资:%dn",emp1->salary); printf("办公电话:%sn",
27、emp1->tel_office); printf("家庭电话:%sn",emp1->tel_home); printf("移动电话:%sn",emp1->mobile); printf("QQ号码:%sn",emp1->qq); printf("住址:%sn",emp1->address); bound('_',40); emp1=emp1->next; printf("n显示完毕,按任意键退出!n"); getch(); return;/*
28、检测登录密码*/void login() int i,n=3; char pwd9; do printf("请输入密码:"); for(i=0;i<8 && (pwdi=getch()!=13);i+) putch('*'); pwdi='0' if(strcmp(pwd,password) printf("n密码错误,请重新输入!n"); system("cls"); n-; else break; while(n>0); if(!n) printf("请退出,你
29、的三次输入密码错误!"); getch(); exit(1); void menu() char choice; system("cls"); do printf("t 企业员工管理系统n"); bound('_',40); printf("t1.输入员工信息n"); printf("t2.查询员工信息n"); printf("t3.显示员工信息n"); printf("t4.修改员工信息n"); printf("t5.删除员工信息n&qu
30、ot;); printf("t6.统计员工信息n"); printf("t7.重置系统密码n"); printf("t0.退出系统n"); bound('_',40); printf("n请选择您需要的操作!"); do fflush(stdin); choice=getchar(); system("cls"); switch(choice) case '1': addemp(); break; case '2': if(gfirst) prin
31、tf("系统信息中无员工信息,请先添加员工信息!n"); getch(); break; findemp(); break; case '3': if(gfirst) printf("系统信息中无员工信息,请先添加员工信息!n"); getch(); break; listemp(); break; case '4': if(gfirst) printf("系统信息中无员工信息,请先添加员工信息!n"); getch(); break; modifyemp(); break; case '5
32、39;: if(gfirst) printf("系统信息中无员工信息,请先添加员工信息!n"); getch(); break; delemp(); break; case '6': if(gfirst) printf("系统信息中无员工信息,请先添加员工信息!n"); getch(); break; summaryemp(); break; case '7': resetpwd(); break; case '0': savedata(); exit(0); while(choice<'0&
33、#39;|choice>'7'); system("cls"); while(1); int modi_salary(int salary) int newsalary; printf("原来的工资数为:%d",salary); printf("新的工资数:"); scanf("%d",&newsalary); return(newsalary);int modi_age(int age) int newage; printf("原来的年龄为:%d",age); p
34、rintf("新的年龄:"); scanf("%d",&newage); return(newage);char *modi_field(char *field,char *content,int len) char *str; str=malloc(sizeof(char)*len); if(str=NULL) printf("内存分配失败,按任意键退出!"); getch(); return NULL; printf("原来%s为:%sn",field,content); printf("修改
35、为(内容不要超过%d个字符!):",len); scanf("%s",str); return str;void modifyemp() EMP *emp1; char name10,*newcontent; int choice; printf("n请输入您要修改的员工的信息:"); scanf("%s",&name); emp1=findname(name); displayemp(emp1,"姓名",name); if(emp1) printf("n 请输入你要修改的内容选项!n&
36、quot;); bound('_',40); printf("1.修改职务 2.修改年龄n"); printf("3.修改文化程度 4.修改工资n"); printf("5.修改办公室电话 6.修改家庭电话n"); printf("7.修改移动电话 8.修改QQ号码 n"); printf("9.修改住址 0.返回n "); bound('_',40); do fflush(stdin); choice=getchar(); switch(choice) case
37、 '1': newcontent=modi_field("职务",emp1->duty,10); if(newcontent!=NULL) strcpy(emp1->duty,newcontent); free(newcontent); break; case '2': emp1->age=modi_age(emp1->age); break; case '3': newcontent=modi_field("文化程度",emp1->edu,10); if(newcontent
38、!=NULL) strcpy(emp1->edu,newcontent); free(newcontent); break; case '4': emp1->salary=modi_salary(emp1->salary); break; case '5': newcontent=modi_field("办公室电话",emp1->tel_office,13); if(newcontent!=NULL) strcpy(emp1->tel_office,newcontent); free(newcontent); break; case '6': newcontent=modi_field("家庭电话",emp1->tel_home,13); if(newcontent!=NULL) strcpy(emp1
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 二零二五年度大数据中心建设项目融资合同2篇
- 多媒体在小学英语情景对话教学中的应用
- 小米的办公自动化创新驱动的效率提升
- 2025年度消防设备租赁与维修服务协议3篇
- 2024石材外墙干挂工程材料运输及仓储合同3篇
- 学生营养餐与校园文化建设的融合
- 小学生数学问题解决能力的课堂实践探索
- 如何评估小学生的写作能力发展
- 2025年度网络安全防护体系建设总合同3篇
- 医疗设备维护的标准化巡察方案
- 大学军事理论课教程第三章军事思想第四节当代中国军事思想
- 开展学科周活动方案
- 园林景观给排水设计汇总计算书
- 《电线电缆常用计算公式》
- 关于心理健康教育情况的调研报告
- 内侧蒂直线短瘢痕法治疗乳房肥大症的临床研究
- 天一大联考2024届物理高一上期末学业水平测试试题含解析
- 整改回复书样板后边附带图片
- 空气能施工方案
- 常见藻类图谱(史上最全版本)
- 硫酸装置操作规程
评论
0/150
提交评论