#include<stdio.h>
#include<stdlib.h>
#include<string.h>
struct books{
char booknum[20]; //书号
char bookname[20]; //书名
char authorname[20]; //作者
char cbs[20]; //出版社
char price[5]; //价格
struct books *next;
struct books *prior;
......................
阅读全部 | 2016年6月23日 11:31