欢迎来到天天文库
浏览记录
ID:3955622
大小:98.01 KB
页数:27页
时间:2017-11-26
《c语言图书管理系统》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、C语言图书管理系统#include#include#includestructbook{intnum;charbname[50];charwname[20];charpress[50];charsort[50];inttime;floatprice;structbook*next;};structbook*creatbook();//创建链表structbook*addbook(structbook*head);//添加图书intyanzhen
2、g(structbook*head,intm);//验证新添加的图书编码是否已存在voiddeletebook(structbook*head);//删除图书voidfprint(structbook*head);//将链表写入文件structbook*load();//从文件中读取信息并建成链表voidprint_book(structbook*head);//将链表信息输出voidchaxun(structbook*head);//查询图书信息voidnum_chaxun(structbook*h
3、ead);//按图书编号查询图书voidwname_chaxun(structbook*head);//按作者名查询图书voidsort_chaxun(structbook*head);//按类别查询图书voidtime_chaxun(structbook*head);//按出版时间查询图书voidbname_chaxun(structbook*head);//按图书名查询图书voidxiugai(structbook*head);//修改图书信息voidpaixu(structbook*head);
4、//对图书进行排序voidnum_paixu(structbook*head);//按图书编号排序voidtime_paixu(structbook*head);//按图书出版时间排序voidprice_paixu(structbook*head);//按图书价格排序voidbname_paixu(structbook*head);//按图书名排序voidwname_paixu(structbook*head);//按作者名排序intmain(){intchoice,n,x,y=1,c,c1=1234
5、;chara,d,b[10],b1[10]="yjk";structbook*head=NULL;while(y){system("cls");printf("");printf("**********欢迎光临**********");printf("**********************图书信息管理系统************************");printf("");printf("============1-用户登录=====
6、======");printf("============0-退出系统===========");printf("请输入您的选择:");scanf("%d",&n);printf("");getchar();switch(n){case0:y=0;break;case1:printf("请输入您的用户名:");gets(b);printf("");printf("请输入您的密码:");scanf("%d",&c);printf("");if(strcmp(b,b1)!=0
7、
8、c!=
9、c1){printf("验证失败,请重新输入!");scanf("%c",&d);getchar();system("cls");}else{printf("验证通过!请按Enter键进入!");scanf("%c",&d);getchar();x=1;while(x){system("cls");printf("------------------");printf("*图书信息管理系统*");printf("------------------");printf("****
10、******************************************");printf("**********************************************");printf("
11、
12、1-添加图书2-删除图书
13、
14、");printf("
15、
16、3-图书列表4-图书排序
17、
18、");printf("
19、
20、5-查询图书6-修改图书
21、
22、");printf("
23、
24、7-录入数据0-退出系统
25、
26、
此文档下载收益归作者所有