摘要:
#include <stdlib.h>/*标准库函数*/#include <stdio.h>/*I/O函数*/#include <string.h>/*字符串函数*/#include <ctype.h>/*字符操作函数*/typedef struct bookinfo{int id;char name[20];int count;char nametype[20];//分类名称 char descript[50];//描述int country;//国家 }bookinfo;static bookinfo books;typedef struct 阅读全文