摘要: #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 阅读全文
posted @ 2011-09-16 17:16 火腿骑士 阅读(319) 评论(0) 推荐(1) 编辑