一、目的 实现图书库存的添加、删除、查询、借阅、归还等功能,方便管理。 二、功能实现思维导图 三、代码【C语言】 #include <stdio.h> #include <stdlib.h> #include <string.h> struct bookI…
include <iostream> include <iomanip> include <string> //输入/输出文件流类 include <fstream> using namespace std;//最多的读者 const int Maxr=100;//最多的图书 const int Maxb=100;//每位读者最多借五本书 const int Maxbor=5;//读者类,实现对读者的信息的描述 class Reader { priv...