C语言大做业图书管理系统

#include <stdio.h> #include <stdlib.h> #include <string.h> #define N 100 typedef struct Books { char num[20]; char name[20]; char author[20]; int price; int total; char introduce[50]; }BK; BK
相关文章
相关标签/搜索