c语言程序设计报告-图书管理系统-第二组_第1页
c语言程序设计报告-图书管理系统-第二组_第2页
c语言程序设计报告-图书管理系统-第二组_第3页
c语言程序设计报告-图书管理系统-第二组_第4页
c语言程序设计报告-图书管理系统-第二组_第5页
已阅读5页,还剩6页未读 继续免费阅读

下载本文档

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

文档简介

C语言课程设计报告图书信息管理系统设计第二组指导老师:韩晶C语言程序设计C语言程序设计实践是学习C语言的重要一环。在实践中我们运用所有所学的C语言知识完成此次项目。任何上机实践都增强我们对C语言的理解及运用能力。虽然此次项目对我们初学者来说是一个巨大的工程,但组员之间的合作让我们顺利解决了各种难题。谨以此成果献给所有费尽心血的第二小组成员及不断给予指导的韩老师。题目要求1.设计题目:图书信息管理系统2.图书信息包括:登录号、书名、作者名、分类号、出版单位、出版时间价格系统实现以下功能:1)系统以菜单方式工作。2)图书信息录入功能——输入。3)图书信息浏览功能——输出。4)查询和排序功能:(1)按书名查询(2)按作者名查询(3)按登录号排序(4)按图书价钱排序5)图书信息的删除与修改。根据题目要求分析可知我们需要程序提供一个结构体及文件的输入输出功能。图书信息以结构体的形式存入固定文件中,在此基础上实现图书信息的浏览,查询和排序,删除与修改功能。并将各种功能分为不同的子程序,在主程序上进行调用及运行。程序界面菜单以键盘输入选择的方式来运行各种功能。三.总体设计根据题目要求将程序分为以下部分:1.管理员登陆系统模块2.菜单选择模块

3.图书信息录入功能模块图书信息浏览功能模块图书信息查询功能模块图书信息的删除与修改模块四.具体编程四.具体编程#include<stdio.h>#include<stdio.h>typedefstructbkInfo{charidNum[20];charbkName[20];charwriter[10];charpress[10];charpubTime[10];charprice[10];charclaNum[14];};/*图书信息结构体*//*图书编号*//*书名*//*作者名*//*出版社*//*出版时间*//*价格*//*分类号*//*管理员菜单*//*管理员菜单*//*读者菜单*//*图书信息添加*/#definex4#definey6intmain(){voidmenua();voidmenub();voidbkadd();intchoice1,chlan;intchoice2,idcode=1615,passcode=123,idcheck,passcheck;clrscr();1.登录菜单printf("\n==============================================================");printf("\n||\t\t\t\t\t\t\t\t||");printf("\n||\t\t***WELCOMETOTHE***||");printf("\n||\t\t\t\t\t\t\t\t||");printf("\n||UNITEDADMINISTRATIONANDINQUIRYOFBOOKINFORMATION||");printf("\n||\t\t\t\t\t\t\t\t||");printf("\n||\t\t***STANDERDSYSTEM***\t\t||");printf("\n||\t\t\t(ALPHA-X-%d.%d)\t\t\t||",x,y);TOC\o"1-5"\h\zprintf("\n||\t\t\t\t\t\t\t\t||");printf("\n||\t\t\tpoweredbyGroupII\t\t\t||");printf("\n||\t\t\t\t\t\t\t\t||");printf("\n==============================================================");printf("\n\n\t");printf("\n\t\t>>>ENTERTHESYSTEM?Y/N<<<");printf("\n\t\n");printf("\n\n\t[]Enter1forYESor2forNO");/*是否选择进入*/printf("\n\nYOUCHOOSE:");scanf("%d",&choice1);2.管理员模式/读者模式进入while(choice1!=1&&choice1!=2)/*选择号错误*/{printf("\n\n\t[]Unidentifiedoption,pleaserecheck!");printf("\n\t[]Enter1forYESor2forNO");printf("\n\nYOUCHOOSE:");scanf("%d",&choice1);}switch(choice1){case1:/*选择进入系统*/printf("\n\n\t\tACCESSconfirmedloading...");printf("\n\n\t[]IsthisanAdministratorVisitoraGeneralVisit?");printf("\n\n\t[]Enter1foryourAdministratorVisitor2fortheother.\n\n");printf("\nYOUCHOOSE:");/*选择管理员模式或读者模式*/scanf("%d",&choice2);while(choice2!=1&&choice2!=2)/*进入模式选择号错误*/{printf("\n\n\t[]Unidentifiedoption,pleaserecheck!");printf("\n\t[]Enter1foryourAdministratorVisitor2fortheother.");printf("\n\nYOUCHOOSE:");scanf("%d",&choice2);}if(choice2==1)/*进入管理员模式*/{printf("\n\n\t");printf("\n\tLOGIN>>>pleaseenteryourIDCODE&PASSWORD<<<");printf("\n\t\n");printf("\nYOURID:");scanf("%d",&idcheck);printf("\nPASSWORD:");scanf("%d",&passcheck);while(idcheck!二idcode||passcheck!二passcode)/*通行证与密码错误*/{printf("\n\n\t[]UnidentifiedIDorwrongPASSWORD,ACCESSrefused,pleaserecheck!");printf("\n\t[]pleaseenteryourIDCODE&PASSWORD");printf("\n\nYOURID:");scanf("%d",&idcheck);printf("\nPASSWORD:");scanf("%d",&passcheck);}if(idcheck==idcode&&passcheck==passcode)/*进入管理员模式菜单*/{printf("\n\n\n\n\t[]ACCESSforNobleClasshasbeenauthorisedloading...");printf("\n\n\t[]AdministorSystematyourservice!");printf("\n\n\n\t[]Pleasechoosealanguageservice:1.Chinese2.English3.French");printf("\n\nYOUCHOOSE:");/*语言选择*/scanf("%d",&chlan);while(chlan!=2){if(chlan>3){printf("\n\n\t[]Unidentifiedoption,pleaserecheck!");printf("\n\t[]Pleasechoosealanguageservice:1.Chinese2.English3.French");}else{printf("\n\n\t[]ERROR:NOLANGUAGEPACKAGEHASBEENFOUND!");printf("\n\t[]Pleasechoosealanguageservice:1.Chinese2.English3.French");}printf("\n\nYOUCHOOSE:");scanf("%d",&chlan);}if(chlan==2){menua();}}}if(choice2==2)/*进入读者模式*/{printf("\n\n\n\n\t[]OPTIONCONFIRMED,LANGUAGEPACKAGEislaoding...pleasewait...\n");printf("\n\t[]ACCESSauthorisedloading...");printf("\n\n\t[]VisitorSystemoperational...");menub();}break;case2:/*选择不进入系统*/printf("\n\n\t\t\t\t***QUIT***");printf("\n\t\t\tTHANKSFORUSING,SOLONG!!!\n");printf("\n\nUNITEDADMINISTRATIONANDINQUIRYOFBOOKINFORMATION-STANDERDSYSTEM-%d.%d",x,y);printf("\n\t\tpoweredbyGroupIIin3.2012");printf("\n\n\n\t\t\tSPECIALTHANKSFOR\n");printf("\n\t[]PeterHoruceforMainFunction&Debugging")printf("\n\t[]WangYueWei"_forProgramDesign&...");printf("\n\t[]ZhangYanDongforBookDataInputFunction");printf("\n\t[]ZhangBeiBeiforthe...");printf("\n\t[]GuoXinYuforthe...");printf("\n\t[]SongShaoXiuforthe...");printf("\n\t[]GuLingKaiforthe...");printf("\n\t[]ZhenYiFengforthe...");printf("\n\t[]WangJieYaoforthe...");printf("\n\t[]LiLuZi二forthe...");printf("\n\t[]WangSanHuforthe...");printf("\n\t[]HuangFangHaoforthe...");printf("\n");getch();break;

return0;}3.管理员模式系统voidmenua(){intch,out;printf("\n\n\n\t[]OPTIONCONFIRMED,LANGUAGEPACKAGEislaoding...pleasewait...\n\n");printf("\n\t\t*********************************");printf("\n\t\t*\t\t\t\t*");printf("\n\t\t*CENTRALBOOKADMINISTRATION*");printf("\n\t\t*\t\t\t\t*");<<<MENU>>>\n\n");1.BookDataInput\t2.bkamend\n\n");3.bkdelete\t\t4.bkorder\n\n");5.bksearch\t\t6.bkview\n\n");7.QUIT\n\n\n");printf("\n\t\t*********************************\n\n"<<<MENU>>>\n\n");1.BookDataInput\t2.bkamend\n\n");3.bkdelete\t\t4.bkorder\n\n");5.bksearch\t\t6.bkview\n\n");7.QUIT\n\n\n");printf("PLEASECHOOSEASERVICE:");scanf("%d",&ch);/*服务选择*/while(ch>7){printf("\n\n\t[]Unidentifiedoption,pleaserecheck!\n");printf("\n\nPLEASECHOOSEASERVICE:");scanf("%d",&ch);}switch(ch)case1:printf(case1:printf("\n\t[]Ascase2:printf("\n\t[]Ascase3:printf("\n\t[]Ascase4:printf("\n\t[]Ascase5:printf("\n\t[]Ascase6:printf("\n\t[]Ascase7:youwish!\n");bkadd();break;youwish!\n");break;youwish!\n");break;youwish!\n");break;youwish!\n");break;youwish!\n");break;printf("\n\n\t\t\t\t***QUIT***");printf("\n\t\t\tTHANKSFORUSING,SOLONG!!!\n");printf("\n\nUNITEDADMINISTRATIONANDINQUIRYOFBOOKINFORMATION-STANDERDpoweredbyGroupIIin3.2012");SYSTEM-%d.&d",x,y);printf(poweredbyGroupIIin3.2012");printf("\n\n\n\t\t\tSPECIALTHANKSFOR\n");printf("\n\t[]PeterHoruceforMainFunction&Debugging")printf("\n\t[]WangYueWei"_forProgramDesign&...");printf("\n\t[]ZhangYanDongforBookDataInputFunction");printf("\n\t[]ZhangBeiBeiforthe...");printf("\n\t[]GuoXinYuforthe...");printf("\n\t[]SongShaoXiuforthe...");printf("\n\t[]GuLingKaiforthe...");printf("\n\t[]ZhenYiFengforthe...");printf("\n\t[]WangJieYaoforthe...");printf("\n\t[]LiLuZi二forthe...");printf("\n\t[]WangSanHuforthe...");printf("\n\t[]HuangFangHaoforthe...");printf("\n");getch();break;}}4.读者模式系统voidmenub(){intcho,out;printf("\n\n\n\t\t*****INQUIRYOFBOOKINFORMATION*****");printf("\n");printf("\n\n\t\t\t<<<MENU>>>\n\n");printf("\t\tprintf("\t\tprintf("\t\tprintf("\t\t1.[restricted]\t2.[restricted]\n\n");3.[restricted]\t4.[restricted]\n\n");5.bksearch\t\t6.bkview\n\n");7.QUIT\n\n\n");printf("PLEASECHOOSEASERVICE:");scanf("%d",&cho);/*服务选择*/while(cho>7||cho<5){if(cho>7)printf("\n\n\t[]Unidentifiedoption,pleaserecheck!\n");if(cho>=1&&cho<=4)printf("\n\n\t[]Restrictedoption!Youarenotanauthorisedadministor!\n);printf("\n\nPLEASECHOOSEASERVICE:");scanf("%d",&cho);}switch(cho){case5:break;case6:break;case7:printf("\n\n\t\t\t\t***QUIT***");printf("\n\t\t\tTHANKSFORUSING,SOLONG!!!\n");printf("\n\nUNITEDADMINISTRATIONANDINQUIRYOFBOOKINFORMATION-STANDERDSYSTEM-%d.&d",x,y);printf("\n\t\tpoweredbyGroupIIin3.2012");printf("\n\n\n\t\t\tSPECIALTHANKSFOR\n");printf("\n\t[]PeterHoruceforMainFunction&Debugging")printf("\n\t[]WangYueWeiforProgramDesign&printf("\n\t[]ZhangYanDongforBookDataInputFunction");printf("\n\t[]ZhangBeiBeiforthe...");printf("\n\t[]GuoXinYuforthe...");printf("\n\t[]SongShaoXiuforthe...");printf("\n\t[]GuLingKaiforthe...");printf("\n\t[]ZhenYiFengforthe...");printf("\n\t[]WangJieYaoforthe...");printf("\n\t[]LiLuZiforthe...");printf("\n\t[]WangSanHuforthe...");printf("\n\t[]HuangFangHaoforthe...");printf("\n");getch();break;}}5.图书添加voidbkadd(){structbkInfobook;FILE*fp;intn,i,j;charmessage[2];if((fp=fopen("e:\\bkInfo.txt","a"))==NULL){if((fp=fopen("e:\\bkInfo.txt","w"))==NULL)

{printf("Failedtoopenthefile\n");return;}}printf("\n\n\n\t\t==========================\n");printf("\t\tBookInformationInput\n");printf("\t\t==========================\n\n");printf("\t[]Thenumberofyourbooksthataretowriteinis(are):");scanf("%d",&n);gets(message);for(i=1;i<=n;i++){printf("\n\n\t[]Nowpleasewriteintheinfo:\n\n\n");printf("\t1.BOOK'SID:");gets(book.idNum);printf("\t2.BOOK'SNAME:");gets(book.bkName);printf("\t3.AUTHOR'SNAME:");gets(book.writer);printf("\t4.PRESSOFBOOK:");gets(book.press);printf("\t5.BOOK'SPRICE:");gets(book.price);printf("\t6.PUBLISHEDTIME:");gets(book.pubTime);printf("\t7.CLASSIFICATION:");gets(book.claNum);fprintf(fp,"%s%s%s%s%s%s%s\n",&book.idNum,&book.bkName,&book.writer,&book.press,&book.price,&book.pubTime,&book.claNum);}printf("\n\n\n\t[]Alldatahavebeensaved!\n\n\t[]BacktoMENU(1)orjustQUIT(2)?");printf("\n\nYOUCHOOSE:");/*服务选择*/scanf("%d",&j);while(j!=1&&j!=2){printf("\n\n\t[]Unidentifiedoption,pleaserecheck!");printf("\n\t[]Enter1forMENUor2forQUIT");printf("\n\nYOUCHOOSE:");scanf("%d",&j);}if(j==1){printf(if(j==1){printf("\n");menua();}/*返回菜单*/if(j==2)/*选择结束*/{printf("\n\

温馨提示

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

最新文档

评论

0/150

提交评论