C++图书管理系统! #include #include #include #include const int Maxr=200; const int Maxb=200; const int Maxbor=2; //每个读者最多借借2本 class Reader //读者类 { int tag; //删除标记 1:已删,0:未删 int no; //读者编号 char name[10]; //读者姓名 int borbook[Maxbor]; //所借图书 public: Reade
C语言源代码的图书管理系统 #include #include #include #include struct bookData { int booknumber; char bookname[30]; int store; }; struct Person { char name[20]; char studynumber[10]; int count; b ookData Rbook[2]; //bookData Rbook; }; class History { public: His