ImageVerifierCode 换一换
格式:DOCX , 页数:22 ,大小:18.42KB ,
资源ID:2846544      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/2846544.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(c语言图书馆管理系统.docx)为本站会员(b****3)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

c语言图书馆管理系统.docx

1、c语言图书馆管理系统C源代码如下:view plaincopy to clipboardprint?#include #include #include struct book char book_name30; int bianhao; double price; char author20; char state20; char name20; char sex10; int xuehao; struct book *book_next; ; struct club char name20; char sex10; int xuehao; char borrow30; struct clu

2、b *club_next; ; void Print_Book(struct book *head_book);/*浏览所有图书信息*/ void Print_Club(struct club *head_club);/*浏览所有会员信息*/ struct book *Create_New_Book();/*创建新的图书库,图书编号输入为0时结束*/ struct book *Search_Book_bianhao(int bianhao,struct book *head_book); struct book *Search_Book_name(char *b_name,struct boo

3、k *head_book); struct book *Search_Book_price(double price_h,double price_l,struct book *head_book); struct book *Insert_Book(struct book *head_book,struct book *stud_book);/*增加图书,逐个添加*/ struct book *Delete_Book(struct book *head_book,int bianhao);/*删除图书*/ struct club *Create_New_Club(); struct club

4、 *Search_Club_xuehao(int xuehao,struct club *head_club); struct club *Search_Club_name(char *c_name,struct club *head_club); struct club *Insert_Club(struct club *head_club,struct club *stud_club); struct club *Delete_Club(struct club *head_club,int xuehao); struct book *Lent_Book(int bianhao,int xu

5、ehao,struct book *head_book,struct club *head_club); struct book *back(int bianhao,int xuehao,struct book *head_book,struct club *head_club); int main() struct book *head_book,*p_book; char book_name30,name20,author20,sex10; int bianhao; double price,price_h,price_l; int size_book=sizeof(struct book

6、); int m=1,n=1,f; char *b_name,*c_name; struct club *head_club,*p_club; int xuehao; int size_club=sizeof(struct club); int choice; printf(n欢迎您第一次进入图书管理系统!nn); printf(-向导-新建图书库nn); printf(注意:当输入图书编号为0时,进入下一步.nn); head_book=Create_New_Book(); system(cls); printf(n欢迎您第一次进入图书管理系统!nn); printf(-向导-新建会员库nn

7、); printf(注意:当输入会员学号为0时,进入主菜单.nn); head_club=Create_New_Club(); system(cls); do printf(nttt图书管理系统nn); printf(n); printf(ttt1:借书办理t);printf( 6:还书办理n); printf(n); printf(ttt2:查询图书t);printf( 7:查询会员n); printf(ttt3:添加图书t);printf( 8:添加会员n); printf(ttt4:删除图书t);printf( 9:删除会员n); printf(ttt5:遍历图书t);printf(10

8、:遍历会员nn); printf(tttnn); printf(ttt0:退出nn); printf(请选择:); scanf(%d,&choice); switch(choice) case 1: printf(nttt图书管理系统nn); printf(输入所借图书编号:n); scanf(%d,&bianhao); printf(输入借书人的学号:n); scanf(%d,&xuehao); head_book=Lent_Book(bianhao,xuehao,head_book,head_club); system(cls); printf(n借阅成功!nn); printf(相关信息

9、如下:nn); head_book=Search_Book_bianhao(bianhao,head_book); break; case 2: system(cls); printf(nttt图书管理系统nn); printf(1.按编号查询nn); printf(2.按名称查询nn); printf(3.按价格区间查询nn); printf(0.返回主菜单nn); printf(请选择:); scanf(%d,&f); if(f=1) printf(请输入查询图书编号:); scanf(%d,&bianhao); printf(相关信息如下:nn); head_book=Search_Bo

10、ok_bianhao(bianhao,head_book); break; else if(f=2) b_name=book_name; getchar(); printf(请输入查询图书名称:); gets(b_name); printf(相关信息如下:nn); head_book=Search_Book_name(b_name,head_book); break; else if(f=3) printf(请输入最高价格:); scanf(%lf,&price_h); printf(请输入最低价格:); scanf(%lf,&price_l); printf(相关信息如下:nn); head

11、_book=Search_Book_price(price_h,price_l,head_book); break; else if(f=0) break; break; case 6: printf(nttt图书管理系统nn); printf(输入所还图书编号:n); scanf(%d,&bianhao); printf(输入还书人的学号:n); scanf(%d,&xuehao); head_book=back(bianhao,xuehao,head_book,head_club); system(cls); printf(n归还成功!nn); printf(相关信息如下:nn); hea

12、d_book=Search_Book_bianhao(bianhao,head_book); break; case 3: system(cls); printf(nttt图书管理系统nn); printf(请输入图书名称:); scanf(%s,book_name); printf(请输入图书编号:); scanf(%d,&bianhao); printf(请输入单价:); scanf(%lf,&price); printf(请输入作者名字:); scanf(%s,author); printf(n); struct book *ptr_b; for(ptr_b=head_book;ptr_

13、b;ptr_b=ptr_b-book_next) if(ptr_b-bianhao=bianhao) printf(此编号图书已存在n); m=0; break; if(m) p_book=(struct book *)malloc(size_book); strcpy(p_book-book_name,book_name); p_book-bianhao=bianhao; p_book-price=price; p_book-xuehao=0; strcpy(p_book-author,author); strcpy(p_book-state,存在); strcpy(p_book-sex,待定); strcpy(p_book-name,待定); head_book=Insert_Book(head_book,p_book); printf(n添加图书成功!nn); break; case 4: system(cl

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1