欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    小型图书管理系统C语言程序(共14页).doc

    • 资源ID:16652499       资源大小:32.50KB        全文页数:14页
    • 资源格式: DOC        下载积分:20金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要20金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    小型图书管理系统C语言程序(共14页).doc

    精选优质文档-倾情为你奉上小型图书管理系统C语言程序#include<stdio.h>#include<string.h>#include<stdlib.h>struct book char writer20; char title20; char publishinghouse20; char number10; float price; struct book * next;struct book * Create_Book();void Insert(struct book * head);void Delete(struct book * head);void Print_Book(struct book * head);void search_book(struct book * head);void change_Book(struct book * head);void save(struct book * head);struct book * Create_Book()struct book * head;head=(struct book *)malloc(sizeof(struct book);head->next=NULL;return head;void save(struct book * head)struct book *p;FILE *fp;p=head;fp=fopen("kucun.txt","w+");fprintf(fp,"*n");fprintf(fp,"书号t 书名t 作者t 出版社t 价格t n"); fprintf(fp," n");while(p->next!= NULL)p=p->next;fprintf(fp,"%st %st %st %st %.2ft n",p->number,p->title,p->writer,p->publishinghouse,p->price);fprintf(fp,"*n");fclose(fp);printf(" 已将图书数据保存到 kucun.txt 文件n");/插入/void Insert(struct book *head) struct book *s, *p,*p1,*swap; char flag='Y' swap=(struct book *)malloc(sizeof(struct book); p1=swap; p=head; while(flag='Y'|flag='y') s=(struct book *)malloc(sizeof(struct book); printf("n 请输入图书书号:"); fflush(stdin); scanf("%s",s->number); printf("n 请输入图书书名:"); fflush(stdin); scanf("%s",s->title); printf("n 请输入图书作者名:"); fflush(stdin); scanf("%s",s->writer); printf("n 请输入图书出版社:"); fflush(stdin); scanf("%s",s->publishinghouse); printf("n 请输入图书价格:"); fflush(stdin); scanf("%f",&s->price); printf("n");/排序/ p1=p->next; if(head->next!=NULL) do if(strcmp(p1->number),(s->number)>0) strcpy(swap->number,p1->number); strcpy(swap->title,p1->title); strcpy(swap->writer,p1->writer); strcpy(swap->publishinghouse,p1->publishinghouse); swap->price=p1->price; strcpy(p1->number,s->number); strcpy(p1->title,s->title); strcpy(p1->writer,s->writer); strcpy(p1->publishinghouse,s->publishinghouse); p1->price=s->price; strcpy(s->number,swap->number); strcpy(s->title,swap->title); strcpy(s->writer,swap->writer); strcpy(s->publishinghouse,swap->publishinghouse); s->price=swap->price; p=p1; p1=p->next; while(p1!=NULL); p->next=s; s->next=NULL; printf(" * 添加成功!*"); printf("n 继续添加?(Y/N):"); fflush(stdin); scanf("%c",&flag); printf("n"); if(flag='N'|flag='n') break; else if(flag='Y'|flag='y') continue; save(head);/查找/void search_book(struct book *head) struct book * p; char temp20; p=head; if(head=NULL | head->next=NULL) printf(" * 图书库为空!*n"); else printf("请输入您要查找的书名: "); fflush(stdin); scanf("%s",temp); while(p->next!= NULL) p=p->next; if(strcmp(p->title,temp)=0) printf("n图书已找到!n"); printf("n"); printf("书号: %stn",p->number); printf("书名: %stn",p->title); printf("作者名: %stn",p->writer); printf("出版社: %stn",p->publishinghouse); printf("价格: %.2ftn",p->price); if(p->next=NULL) printf("n查询完毕!n"); void Print_Book(struct book * head) struct book * p; if(head=NULL | head->next=NULL) printf("n * 没有图书记录! *nn"); p=head; printf("*n"); printf(" 书号t书名t作者t出版社t价格tn"); printf("*n"); while(p->next!= NULL) p=p->next; printf("%st%st%st%st%.2ftn",p->number,p->title,p->writer,p->publishinghouse,p->price); printf("*n"); printf("n");/更改/void change_Book(struct book * head)struct book * p;int panduan=0;char temp20;p=head;printf("请输入要修改图书的书号:");scanf("%s",temp);while(p->next!= NULL)p=p->next;if(strcmp(p->number,temp)=0) printf("n 请输入图书书名:"); fflush(stdin); scanf("%s",p->title); printf("n 请输入图书作者名:"); fflush(stdin); scanf("%s",p->writer); printf("n 请输入图书出版社:"); fflush(stdin); scanf("%s",p->publishinghouse); printf("n 请输入图书价格:"); fflush(stdin); scanf("%f",&p->price); printf("n"); panduan=1; if(panduan=0) printf(" n*没有图书记录!*nn");/删除/void Delete(struct book *head) struct book *s,*p; char temp20; int panduan; panduan=0; p=s=head; printf(" 请输入您要删除的书名:"); scanf("%s",temp); p=p->next; while(p!= NULL) if(strcmp(p->title,temp)=0) panduan=1; break; p=p->next; if(panduan=1) while(s->next!=p) s=s->next; s->next=p->next; free(p); printf("n * 删除成功!*n"); save(head); else printf(" 您输入的书目不存在,请确认后输入!n"); /主函数/void main() struct book * head; int choice; head=NULL; while(1) printf(" *n"); printf(" * 小型图书管理系统 *n"); 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(" 请选择:"); fflush(stdin); scanf("%d",&choice); switch (choice) case 1: if(head=NULL) head=Create_Book(); Insert(head); break; case 2: Print_Book(head); break; case 3: search_book(head); break; case 4: change_Book(head); break; case 5: Delete(head); break; case 6: printf("n"); printf(" * 感谢使用图书管理系统 *n"); break; default: printf(" * 输入错误,请重新输入!*"); break; 专心-专注-专业

    注意事项

    本文(小型图书管理系统C语言程序(共14页).doc)为本站会员(飞****2)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开