收藏 分销(赏)

C语言图书标准管理系统源代码.docx

上传人:人****来 文档编号:2882029 上传时间:2024-06-08 格式:DOCX 页数:67 大小:91.87KB
下载 相关 举报
C语言图书标准管理系统源代码.docx_第1页
第1页 / 共67页
C语言图书标准管理系统源代码.docx_第2页
第2页 / 共67页
C语言图书标准管理系统源代码.docx_第3页
第3页 / 共67页
C语言图书标准管理系统源代码.docx_第4页
第4页 / 共67页
C语言图书标准管理系统源代码.docx_第5页
第5页 / 共67页
点击查看更多>>
资源描述

1、/*需要在源代码相同目录下创建四个txt文件:tushu_list.txt,jieshu_list.txt,xuesheng_list.txt,guanliyuan.txt*/#include#include #includestruct tushu /*图书结构体*/char num11; /*编号*/char name31; /*书名*/char writer21; /*作者*/char press21; /*出版社*/char kind21; /*类别*/ double time; /*时间*/double price; /*价格*/struct tushu *next;struct s

2、tu /*学生结构体*/int snum; /*学号*/char mima11; /*密码*/ struct stu *next;struct jieshu /*借书信息结构体*/ int xuehao; /*学生学号*/ char num11; /*编号*/char name31; /*书名*/char writer21; /*作者*/char press21; /*出版社*/char kind21; /*类别*/ double time; /*时间*/double price; /*价格*/struct jieshu *next; ;int denglu=-1;/*已登录学生学号*/ FI

3、LE *fp; /*图书文件*/FILE *fp1; /*管理员信息文件*/ FILE *fp2; /*学生信息文件*/FILE *fp3; /*借书信息文件*/ int main();/*主函数申明*/ struct tushu * create(); /*从文件创建图书链表(从文件中读出图书信息,建立单链表)*/struct stu * xcreate(); /*从文件创建学生信息(从文件读出学生信息,建立学生链表)*/struct jieshu * jcreate();/从文件创建借书信息链表struct jieshu * borrowcreate(struct tushu *k,str

4、uct jieshu *h);/直接创建借书信息链表 struct tushu * Input(); /*图书添加(可进行图书添加)*/void menu(); /*管理员主菜单(管理员进入对图书及学生信息进行管理操作)*/void xmenu(); /*学生主菜单(学生进入可对图书,密码进行操作)*/void gfind(); /*管理员查询(管理员可按一定方法查询图书)*/void xfind(); /*学生查询(学生可按一定方法查询图书)*/void secret(); /*管理员权限(管理员登陆所用,输入错误次数过多自动退出)*/void sort(struct tushu *head

5、); /*排序(管理员可按一定方法对图书进行排序,排序完以后可选择文件进行保留)*/void fprint(struct tushu *head); /*保留(可追加保留,如添加可用)*/void jsprint(struct jieshu *h); /将借书信息添加到借书文件 void jfprint_(struct tushu *head); /*借书保留(借书成功以后自动从图书馆删除)*/void fprint_(struct tushu *head); /*保留(可覆盖保留如修改,删除,排序后用)*/void gBrowse(struct tushu *head); /*管理员浏览(对

6、图书进行遍历)*/void xBrowse(struct tushu *head); /*学生浏览(学生对图书进行遍历)*/void count(struct tushu *head); /*统计数量(管理员可对图书进行统计)*/void Findofname(struct tushu *head); /*按书名查找*/void Findofwriter(struct tushu *head); /*按作者查找*/void Findofkind(struct tushu *head); /*按类别查找*/void xFindofname(struct tushu *head); /*学生按书名

7、查找*/void xFindofwriter(struct tushu *head); /*学生按作者查找*/void xFindofkind(struct tushu *head); /*学生按类别查找*/void Sort_time(struct tushu * head); /*按时间排序(管理员按时间对图书进行排序,排序完以后可选择文件进行保留)*/void Sort_price(struct tushu * head); /*按价格排序*/void Sort_num(struct tushu * head); /*按编号排序*/void Delete(struct tushu * h

8、ead,char m15);/*按编号删除(管理员可按编号删除图书)*/void Revise(struct tushu *head); /*修改(管理员可对图书进行修改,并选择是否保留)*/void borrow(struct tushu *head); /*借书*/void huanshu(struct tushu *head); /*还书(学生借完书以后进行还书,若没有图书则不能借)*/void gxinxi(); /*管理员信息(有管理员账号及密码,可进行修改)*/void xmima(struct stu *head1); /*学生密码修改(学生可对自己密码进行修改)*/void x

9、secret(struct stu *head1); /*学生权限(学生登陆所用)*/void jsdelete(struct jieshu *h);/学生还书时删除借书统计 void putin(jieshu *h); /将还书信息加入图书文件 /*-*/void menu()/*管理员主菜单(管理员进入对图书及学生信息进行管理操作)*/int choice,n=0;struct tushu *head;struct stu *head1,*p;char m15;there:printf( n); printf( 图书管理系统 n);printf( n);printf( 0退出系统 n);

10、printf( n);printf( 1返回主菜单 n);printf( n);printf( 2浏览图书 n);printf( n);printf( 3统计图书数目 n);printf( n);printf( 4查询 n);printf( n);printf( 5添加 n);printf( n);printf( 6排序 n);printf( n);printf( 7修改 n);printf( n);printf( 8删除 n);printf( n);printf( 9修改账号及密码 n);printf( n);printf( 10学生信息 n);printf( n);printf( 请选择:

11、);fflush(stdin);head=create();scanf(%d,&choice);if(choice=1) system(cls);printf(nnntt您已退出登录!nnnn);system(pause);main();else if(choice=2)system(cls);if(head=NULL)printf(没有图书,请先添加图书!n);system(pause);system(cls);menu();gBrowse(head);else if(choice=3)system(cls);count(head);else if(choice=4)system(cls);

12、if(head=NULL)printf(没有图书,请先添加图书!n);system(pause);system(cls);menu();gfind();else if(choice=5)Input();else if(choice=6)system(cls);if(head=NULL)printf(没有图书,请先添加图书!n);system(pause);system(cls);menu();sort(head);else if(choice=7)system(cls);if(head=NULL)printf(没有图书,请先添加图书!n);system(pause);system(cls);m

13、enu();Revise(head) ;else if(choice=8)if(head=NULL)printf(没有图书,请先添加图书!n);system(pause);system(cls);menu();printf( 请输入想要删除图书编号:); scanf(%s,m);Delete(head,m);else if(choice=9)gxinxi();else if(choice=10)system(cls);head1=xcreate();if(head1=NULL)printf(没有学生信息,请到xuesheng_list.txt添加!n);system(pause);system

14、(cls);menu();printf(学生学号 密码n);for(p=head1;p!=NULL;p=p-next)printf(%-10d %-10sn,p-snum,p-mima);system(pause);system(cls);menu();else if(choice=0)system(cls);printf(nnnn);printf( 感谢使用图书管理系统 nnnnn);exit(0);elsesystem(cls);printf(nnnn 输入错误,请重新输入! nnn );system(pause);system(cls);n+;if(n=3)printf( nnn 你错误

15、次数太多,自动退出! nnn);printf( 感谢使用图书管理系统 nnn);system(pause);exit(0);goto there;/-void xmenu()/*学生主菜单(学生进入可对图书,密码进行操作)*/ struct tushu *head;struct stu *head1;int choice,n=0;there:printf( n); printf( 图书借阅系统 n);printf( n);printf( 0退出系统 n); printf( n);printf( 1返回主菜单 n);printf( n);printf( 2浏览图书 n);printf( n);p

16、rintf( 3查询 n);printf( n);printf( 4借书 n);printf( n);printf( 5还书 n);printf( n);printf( 6修改密码 n);printf( n);printf( 请选择:);fflush(stdin);head=create();scanf(%d,&choice);if(choice=1) denglu=-1; system(cls);printf(nnntt您已退出登录!nnnn);system(pause);main();else if(choice=2)system(cls);if(head=NULL) printf(没有图

17、书!n);system(pause);system(cls);xmenu();xBrowse(head);else if(choice=3)if(head=NULL)printf(没有图书!n);system(pause);system(cls);xmenu();xfind();else if(choice=4)if(head=NULL)printf(没有图书!n);system(pause);system(cls);xmenu();borrow(head);else if(choice=5)huanshu(head);else if(choice=6)system(cls);head1=xc

18、reate();if(head1=NULL)printf(学生信息被清空!n);system(pause);system(cls);xmenu();xmima(head1); ;else if(choice=0)system(cls);printf(nnnn);printf( 感谢使用图书管理系统 nnn);exit(0);elsesystem(cls);printf(nnnn 输入错误,请重新输入! nnn );system(pause);system(cls);n+;if(n=3)printf( nnn 你错误次数太多,自动退出! nnn);printf( 感谢使用图书管理系统 nnn);

19、system(pause);exit(0);goto there;/-void gfind()/*管理员查询(管理员可按一定方法查询图书)*/int choice,n=0;struct tushu *head;there:system(cls);printf( n);printf( 图书借阅系统 n);printf( n);printf( 0返回 n);printf( n);printf( 1按书名查找 n);printf( n);printf( 2按作者查找 n);printf( n);printf( 3按类别查找 n);printf( n);printf( 请选择:);fflush(std

20、in);head=create();scanf(%d,&choice);if(choice=1)system(cls);Findofname(head);else if(choice=2)system(cls);Findofwriter(head);else if(choice=3)system(cls);Findofkind(head);else if(choice=0)system(cls);menu();elsesystem(cls);printf(nnnn 输入错误,请重新输入! nnn );system(pause);system(cls);n+;if(n=3)printf( nnn

21、 你错误次数太多,自动退出! nnn);printf( 感谢使用图书管理系统 nnn);system(pause);exit(0);goto there;/-void xfind() /*学生查询(学生可按一定方法查询图书)*/struct tushu *head;int choice,n=0;there:system(cls);printf( n); printf( 图书借阅系统 n);printf( n);printf( 0返回 n); printf( n);printf( 1按书名查找 n);printf( n);printf( 2按作者查找 n);printf( n);printf(

22、3按类别查找 n);printf( n);printf( 请选择:);fflush(stdin);head=create();scanf(%d,&choice);if(choice=1)system(cls);xFindofname(head);else if(choice=2)system(cls);xFindofwriter(head);else if(choice=3)system(cls);xFindofkind(head);else if(choice=0)system(cls);xmenu();elsesystem(cls);printf(nnnn 输入错误,请重新输入! nnn

23、);system(pause);system(cls);n+;if(n=3)printf( nnn 你错误次数太多,自动退出! nnn);printf( 感谢使用图书借阅系统 nnn);system(pause);exit(0);goto there;/-void sort(struct tushu *head)struct tushu *head2;int choice,n=0;there:system(cls);printf( n); printf( 图书借阅系统 n);printf( n); printf( 0返回 n); printf( n); printf( 1按时间排序 n); p

24、rintf( n); printf( 2按价格排序 n); printf( n); printf( 3按编号排序 n); printf( n); printf( 请选择:);fflush(stdin);head2=create();scanf(%d,&choice);if(choice=1)system(cls); Sort_time(head2);else if(choice=2)system(cls);Sort_price(head2);else if(choice=3)system(cls);Sort_num(head2);else if(choice=0)system(cls);menu();elsesystem(cls);printf(nnnn 输入错误,请重新输入! nnn );system(pause);system(cls);n+;if(n=3)printf( nn

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 考试专区 > 中考

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服