课件C语言图书管理系统代码.docVIP

  • 1
  • 0
  • 约3.36万字
  • 约 29页
  • 2017-12-31 发布于湖北
  • 举报
课件C语言图书管理系统代码

#includelt;stdio.hgt; #includelt;stdlib.hgt; #includelt;string.hgt; struct book{ int num; char bname[50]; char wname[20]; char press[50]; char sort[50]; int time; float price; struct book *next; }; struct book *creatbook(); //创建链表 struct book *addbook(struct book *head); //添加图书 int yanzheng(struct book *head,int m); //验证新添加的图书编码是否已存在 void deletebook(struct book *head); //删除图书 void fprint(struct book *head); //将链表写入文件 struct book *load(); //从文件中读取信息并建成链表 void print_book(struct book *h

文档评论(0)

1亿VIP精品文档

相关文档