- 1、本文档共15页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C源代码如下:
view plaincopy to clipboardprint?
#includestdio.h
#includestdlib.h
#includestring.h
struct book{
char book_name[30];
int bianhao;
double price;
char author[20];
char state[20];
char name[20];
char sex[10];
int xuehao;
struct book *book_next;
};
struct club{
char name[20];
char sex[10];
int xuehao;
char borrow[30];
struct club *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 book *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 *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 xuehao,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_name[30],name[20],author[20],sex[10];
int bianhao;
double price,price_h,price_l;
int size_book=sizeof(struct book);
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欢迎您第一次进入图书管理系统!\n\n);
printf(-----[向导]-----[新建图书库]\n\n
您可能关注的文档
- [2006最经典品牌广告词]精品免费系列.doc
- [UML系统分析与设计教程]第13章.ppt
- [会议纪要]写作方法和范本.ppt
- [交际] 你一定要会的交际三十六计.doc
- [热门下载]z]j跨部门沟通技巧wiv.doc
- [文献检索] 怎样在pubmed里查找资料.doc
- 05-仓库管理程序.doc
- 2007版全国优秀工程咨询成果奖申报指南征订通知.doc
- 2009年度江西省优秀工程咨询成果申报数量限额表.doc
- 2013一乘驾校年度员工培训需求调查问卷.doc
- 2025年硫化碱行业洞察报告及未来五至十年发展趋势预测报告.docx
- 2025年德式香肠加工行业洞察报告及未来五至十年发展趋势预测报告.docx
- 2025年偏钒酸钾行业洞察报告及未来五至十年发展趋势预测报告.docx
- 2025年铝合金型材行业洞察报告及未来五至十年发展趋势预测报告.docx
- 2024-2025学年福建省厦门市思明区八年级上学期期中数学试卷及参考答案.docx
- 2025年民间文化遗产行业洞察报告及未来五至十年发展趋势预测报告.docx
- 2025年动物源食品防腐剂行业洞察报告及未来五至十年发展趋势预测报告.docx
- 2025年硫化锂行业洞察报告及未来五至十年发展趋势预测报告.docx
- 2025年氟化铝行业洞察报告及未来五至十年发展趋势预测报告.docx
- 2025年煤层注水泵行业洞察报告及未来五至十年发展趋势预测报告.docx
最近下载
- 管理学案例两面针公司.ppt VIP
- Roland罗兰GW-8说明书 中文.pdf VIP
- 亚吉铁路运营现状及问题分析.pdf VIP
- 2025年下半年新疆塔城地区急需紧缺人才引进243人笔试参考题库附答案解析.docx VIP
- 大理州旅游美宿基本要求与评价.pdf VIP
- 2025年国开电大机考网考题库04008_理工英语4.doc VIP
- 中建EPC项目总承包管理方法与实务2024.docx
- 2025年下半年新疆塔城地区急需紧缺人才引进243人笔试模拟试题及答案解析.docx VIP
- 2025年下半年新疆塔城地区急需紧缺人才引进243人笔试备考题库附答案解析.docx VIP
- 2025年铁路列车员(中级)职业技能鉴定参考试题库-下(判断题汇总).docx VIP
文档评论(0)