C语言课程设计 职工信息管理系统_第1页
C语言课程设计 职工信息管理系统_第2页
C语言课程设计 职工信息管理系统_第3页
C语言课程设计 职工信息管理系统_第4页
C语言课程设计 职工信息管理系统_第5页
已阅读5页,还剩4页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、青岛理工大学C语言程序实习题目 职工信息管理系统 指导教师: 姓名: 学号: 班级: 专业: 地点: 时间: 一、职工信息管理系统本系统主要功能是实现职工信息的管理,主要有三个功能:1、建立职工信息2、查询职工信息;3、修改职工信息。4.输出职工信息二、上机环境:操作系统:windowsXP开发工具:VC6.0三、函数调用关系:main函数stablishaltersearchoutput四、各函数功能说明 1.main()函数: 主函数 ,通过调用各个函数实现职工信息管理2.creat()函数 : 新建职工信息3.search()函数 : 按编号查询某员工信息4.alter()函数: 修改员

2、工信息5.output()函数 : 按文件名输出员工信息五、各个函数算法描述或流程图stablish开始switchaltersearchoutput结束六、程序运行效果图1运行主界面2、建立文件界面3.职工信息查询界面4.输出信息七、体会在本学期学习中,通过学习C程序设计课,我懂得了C语言是计算机语言的基础,必须学好它,才能更进一步的发展自己,我现在只是初学者,还有很多的不足,需要改正和完善。在以后的学习中我会更加端正我的学习态度,认真学好每一个细节,努力学好这门课程。此次所编程序尚有很多漏洞,有待完善。八、参考文献1 谭浩强 .C程序设计(第三版).清华大学出版社,2005 2 谭浩强 .

3、C程序设计题解与上机指导(第三版).清华大学出版社,20053 湛为芳C语言程序设计技术清华大学出版社,20064 电脑编程技巧与维护杂志社. 电脑编程技巧与维护.人民邮电出版社,20075 杨开城.C语言程序设计教程、实验与练习(第二版). 人民邮电出版社,2006九、程序清单#include<iostream>#include<string.h>#include<process.h>#define A "%-8s %-10s %-7s %-7s %-15s %-8s %-10s %-10s n"#define jilu cleq.nu

4、m,,cleq.sex,cleq.age,cleq.addr,cleq.salary,cleq.health,cleq.bach,cleq.moreusing namespace std;struct clerk/*定义结构体*/char num12;char name15;char sex6;char age6;char addr20;char salary8;char health10;char bach10;char more30;cle30;char filename20;/*文件名*/FILE *fp;/*文件指针*/ int p;void main() void

5、stablish(); /* 函数声明*/ void alter(); void search(); void output();int q; /* 设置变量i为功能选择变量*/printf("Please choose the number of the operating:n 1 Information Enrollmentn 2 Information Searchingn 3 Information Alteringn 4 Information Outputn 5 close the systemn");printf("If it's the f

6、irst time for you to use the program ,please regist the clerks' information. n");scanf("%d",&q);switch(q) case 1:stablish();break; /*函数调用:选择创建功能*/ case 2:search();break; /*用break跳出*/case 3:alter();break;case 4:output();break; case 5: cout<<"正在关闭系统."<<endl

7、;exit(0);default:cout<<"您的输入有误,请重新输入"<<endl;main();void stablish() /*职工登记函数*/int q; printf("n请输入文件名: ");scanf("%s",filename); /*创建一个文件的名字*/if(fp=fopen(filename,"w")=NULL) /*打开文件,实现向文件输入数据*/printf("n不能建立!");exit(0);fprintf(fp,A,"编号&qu

8、ot;,"姓名","性别","年龄","地址","工资","健康状况","学历","备注");printf("Please input the summary number of the clerks:");scanf("%d",&p);printf("Please input the clerk's information:n");for(q=0;q<p

9、;q+) printf("编号: ");/*将数据写入文件*/scanf("%s",cleq.num);printf("姓名: ");scanf("%s",);printf("性别: "); scanf("%s",cleq.sex);printf("年龄: ");scanf("%s",cleq.age);printf("地址: ");scanf("%s",cleq.addr);p

10、rintf("工资: ");scanf("%s",cleq.salary);printf("健康状况: ");scanf("%s",cleq.health);printf("学历: ");scanf("%s",cleq.bach);printf("备注: ");scanf("%s",cleq.more);printf("n");fprintf(fp,A,cleq.num,,cleq.sex,cleq

11、.age,cleq.addr,cleq.salary,cleq.health,cleq.bach,cleq.more);fclose(fp);printf("Regist end!n");main(); void search() /*查询函数*/int t=0,q;char namestr15;printf("Please input the file you want to search:");scanf("%s",filename);printf("nPlease input the clerk's name:

12、");scanf("%s",namestr); if(fp=fopen(filename,"rb")=NULL) /*打开文件*/printf("nCan't open the file!");exit(0);for(q=0;q<30;q+)fscanf(fp,"%s%s%s%s%s%s%s%sn",jilu);if(strcmp(namestr,)=0)printf("n Successfully search,the information is:n"

13、;);printf("%-8s %-10s %-7s %-7s %-15s %-8s %-10s %-10sn","编号","姓名","性别","年龄","地址","工资","健康状况","学历","备注");printf(A,jilu);t=1; if(t=0)printf("nn Sorry,can't found related information,please rev

14、iew it!");fclose(fp);void alter() int q; char name15; printf("please input the file's name where the information is."); scanf("%s",filename);if(fp=fopen(filename,"r+")=NULL)printf("can't open this filen");printf("please input the clerk's

15、name");scanf("%s",name);for(q=0;q<p;q)fread(&cleq,sizeof(struct clerk),1,fp);if(strcmp(name,)=0) /* 调用字符串比较函数*/printf("have found the related information :");break; printf("please input the new information.n");printf("编号: ");/*将数据写入文件*/pri

16、ntf("%s",cleq.num);printf("姓名: ");scanf("%s",);printf("性别: ");scanf("%s",cleq.sex);printf("年龄: ");scanf("%s",cleq.age);printf("地址: ");scanf("%s",cleq.addr);printf("工资: ");scanf("%s"

17、,cleq.salary);printf("健康状况: ");scanf("%s",cleq.health);printf("学历: ");scanf("%s",cleq.bach);printf("备注: ");scanf("%s",cleq.more);fwrite(&cleq,sizeof(struct clerk),1,fp);printf("The altered information is :");printf(A,jilu);printf(" Altering ended!");void output()int q=0;printf("please input the file you want to put out.");scanf("%s",filename);if(fp=fopen(filename,"r&q

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论