- 55
- 0
- 约31.29万字
- 约 30页
- 2017-02-08 发布于河南
- 举报
C语言图书管理系统代码
#includestdio.h
#includestdli.h
#includestring.h
struct ook{
int num;
char name[50];
char wname[20];
char press[50];
char sort[50];
int time;
float price;
struct ook *next;
};
struct ook *creatook(); //创建链表
struct ook *addook(struct ook *head); //添加图书
int yanzheng(struct ook *head,int m); //验证新添加的图书编码是否已存在
void deleteook(struct ook *head); //删除图书
void fprint(struct ook *head); //将链表写入文件
struct ook *load(); //从文件中读取信息并建成链表
void print_ook(struct ook *head); //
原创力文档

文档评论(0)