




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、C语言课程设计报告题 目身份证信息管理软件学 号姓 名年级专业同组人员指导教师完成日期年月日安徽师范大学物理与电子信息学院College of Physics and Electronic Information, Anhui Normal University目录一、 身份证信息管理软件设计目的二、身份证信息管理软件设计基本要求三、身份证信息管理软件程序清单四、身份证信息管理软件设计流程图五、身份证信息管理软件程序截图六、身份证信息管理软件运行结果截图七、身份证信息管理软件设计总结一、身份证信息管理软件设计目的综合运用所学程序设计的知识,完成问题分析、模块设计、代码编写、程序调试和运行等训练
2、任务。通过课程设计,初步锻炼运用所学基础知识解决实际问题的能力,掌握软件开发的基本过程和基本方法以及良好的编程风格,培养在软件开发中相互合作的团队意识。二、身份证信息管理软件设计基本要求1.具备添加、删除功能;2.具备多种查询功能:按年龄、出生日期等;3.具备统计功能,能统计某年龄段的人数;4.在此基础上,可进行文件操作。三、身份证信息管理软件程序清单#include#include#define SIZE 50#define LENGTH sizeof (struct person)struct person char IDNumber20; char name20; char birthd
3、ay15; char nation10; char sex10; char address100;perSIZE;void main() int input(int n); void edit(int n); void add(int n); void del(int n); void print(); void statistic(int n); void save();printf(ttt*n);printf(tttShen Fen Zheng Xin Xi Guan Li Xi Tongn);printf(ttt*ntttt-ShengDuoZheng WangZuXuan WuXuBi
4、nn);printf(ntttt1.creat new filenntttt2.edit the informationnntttt3.add personsnntttt4.delete personsnntttt5.printf informationnntttt6.statistic personsnntttt7.exitn);printf(Please input your choice:);scanf(%d,&c); switch(c) case 1:input(c);break;case 2:edit(c);break;case 3:add(c);break;case 4:del(c
5、);break;case 5:print(c);break;case 6:statistic(c);break;case 7:exit(c);break;default:printf(errorn); int input(int n) int j;printf(How many persons do you want to input:); scanf(%d,&n);if(nSIZE)printf(errorn);else if(n=SIZE)for(j=0;jn;j+) printf(Please input the %dth persons informationn,j+1);printf
6、(ID Number:);scanf(%s,perj.IDNumber); printf(n); printf(The name:); scanf(%s,); printf(n); printf(The birthday:); scanf(%s,perj.birthday);printf(n);printf(The nation:);scanf(%s,perj.nation);printf(n);printf(Sex:);scanf(%s,perj.sex);printf(n);printf(The address:);scanf(%s,perj.address);print
7、f(n);save(); void edit(int n) int i,t,m; char num20; FILE *fp; if (fp=fopen(per.txt,rb)=NULL) printf(cannot open filen);return; for(m=0;mn;m+) fread(&perm,LENGTH,1,fp); printf(Please input the persons ID Number:); scanf(%s,num); for(t=0;tn;t+) if(strcmp (pert.IDNumber,num)=0) i=t; printf(please inpu
8、t the %dth persons information,i+1); printf(The ID Number:); scanf(%s,peri.IDNumber); printf(n); printf(The Name:); scanf(%s,); printf(n); printf(The birthday:); scanf(%s,peri.birthday); printf(n); printf(The nation:); scanf(%s,peri.nation); printf(n); printf(Sex:); scanf(%s,peri.sex); prin
9、tf(n); printf(The Address:); scanf(%s,peri.address); printf(n); fwrite(&peri,LENGTH,1,fp); fclose(fp);void add(int n) int i,m,t; FILE *fp; if(fp=fopen(per.txt,rb)=NULL) printf(cannot open filen);return; for(t=0;tSIZE) printf(errorn); else for(m=n-i;mn;m+) printf(please input a persons imformation:n)
10、;printf(The ID Number:);scanf(%s,perm.IDNumber);printf(n);printf(The Name:);scanf(%s,);printf(n); printf(The birthday:);scanf(%s,perm.birthday);printf(n);printf(The nation:);scanf(%s,perm.nation);printf(n); printf(Sex); scanf(%s,perm.sex); printf(n);printf(The Address:); scanf(%s,perm.addre
11、ss);printf(n);fwrite(&perm,LENGTH,1,fp);fclose(fp); void del(int n) char Name20;int i,t,m;FILE *fp;if(fp=fopen(per.txt,rb+)=NULL)printf(cannot open the filen);return;for(m=0;mn;m+)fread(&perm,LENGTH,1,fp);printf(please input the persons name that you want to delete:);scanf (%s,Name);for (i=0;in;i+)i
12、f (strcmp(,Name)=0) t=i;for(;!=0;t+)pert=pert+1;fclose(fp);void print(int n) int i,t;char Name20;FILE *fp;if(fp=fopen(per.txt,rb)=NULL)printf(cannot open the filen);return;printf(please input the persons name whose imformatin you want to cook );scanf(%s,Name);for(i=0;in;i+)if (strc
13、mp(,Name)=0) t=i;fread(&pert,LENGTH,1,fp);printf(IDNumber:%snname:%snbirthday:%snnation:%snSex:%snaddress:%sn,pert.IDNumber,,pert.birthday,pert.nation,pert.sex,pert.address);fclose(fp);void statistic(int n) int a,b,i,total=0; int c,age; FILE*fp; scanf(%d,&c); age=2010-c; printf(Ple
14、ase input the age from a to b:); if(fp=fopen(per.txt,rb)=NULL) printf(cannot open filen);return; for(i=0;in;i+) fread(&peri,LENGTH,1,fp);scanf(%d,%d,&a,&b);for(i=0;i=a&age=b)printf(IDNumber:%snname:%snAge:%dnnation:%snSex:naddress:%sn,peri.IDNumber,,peri.birthday,peri.nation,peri.sex,peri.a
15、ddress);total=total+1;void save() int j; FILE *fp; if(fp=fopen(per.txt,wb)=NULL) printf(cannot open the filen);return; for(j=0;jSIZE;j+) if(fwrite(&perj,LENGTH,1,fp)!=1) printf(file write errorn); fclose (fp);四、身份证信息管理软件设计流程图开始做出选择选项1,2,3选项4,5,6选择1输入身份证号码、姓名等编辑已输入的信息增加人员信息删除无用信息显示所有信息统计人员信息选择2选择3选择4选择5选择6每一步所有信息全部保存文件中,备用结束五、身份证信息管理软件程序截图1、主函数2、录入函数3、编辑函数截图4、添加函数截图5、删除函数截图6、显示函数截图7、统计函数截图8、信息保存文件函数截图六、身份证信息管理软件运行结果截图1、录入信息截图2、编辑信息截图3、添加信息截图4、删除信息截图5、显示信息截图6、统计信息截图7、信息保存文件截图七、身份证信息管理软件设计总结1、对C语言的进一步学习认识 通过这次的身份证信息管理软件的设计,加深了我们对C语言的学习认识,在设计的过程中,我们对书本知识进一步加深学习。2、锻炼搜索、查阅资料的能
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 烘焙食品公司工作总结
- 癫痫发作的应急处理 课件
- 糖尿病酮症酸中毒患者急诊处置
- ESG投资趋势分析-全面剖析
- 消费行为模式研究-全面剖析
- 梁平井盖施工方案
- 传统戏剧与现代表演艺术的融合研究-全面剖析
- 2024年12月量子等离激元PoA自治佣金组织条款
- 人工智能翻译伦理探讨-全面剖析
- 内衣行业供应链优化-全面剖析
- 《幼儿园混龄民间游戏的研究》课题研究方案
- 《脊柱肿瘤》课件
- 礼仪部计划书
- H酒店品牌管理策略研究
- 物业费用测算表
- S7-200-SMART-PLC-应用教程电课件
- 无人机地形匹配导航
- 新人教版高中英语必修第二册-Unit-5THE-VIRTUAL-CHOIR精美课件
- 一身边的“雷锋”(课件)五年级下册综合实践活动
- 高考语文复习:诗歌语言鉴赏
- 工程造价司法鉴定报告案例
评论
0/150
提交评论