From d7e0ae572eae3f2e5c41903afa8bfa222a058c60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=98=8A?= <956269333@qq.com> Date: Sun, 21 May 2023 10:06:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=87=BD=E6=95=B0=E6=A8=A1=E5=9D=97=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E7=95=8C=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 图书管理系统.c | 73 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 图书管理系统.c diff --git a/图书管理系统.c b/图书管理系统.c new file mode 100644 index 0000000..f453c5e --- /dev/null +++ b/图书管理系统.c @@ -0,0 +1,73 @@ +#define _CRT_SECURE_NO_WARNINGS +#include +#include /*getch()函数使用的头文件*/ +#include /*Sleep()函数使用的头文件*/ +#include /*strcmp()函数使用的头文件*/ +#include + + + + +/*图书结构体:图书编号,图书名,图书作者,出版社,库存量*/ +typedef struct Book +{ + int iNum; + char acName[15]; + char acAuthor[15]; + char acPress[15]; + int iAmount; + struct Book* next; +}Book; + +/*读者:读者编号,读者姓名,性别,可借书数,读者已借书的编号*/ +typedef struct Reader +{ + int iNum; + char acName[15]; + char acSex[4]; + char position[20]; + int iMax; //Student 20本 teacher 40本 + int iAmount; + int aiBookId[100]; + int balance; + int day; + struct Reader* next; +}Reader; + + +void ShowLibInfo(const Book* book, const Reader* reader); +void ShowLibBook(Book* book); +Book* AddBook(Book* book); +Book* DealoldBook(Book* book); +void foundBook(Book* book); +void foundReader_Info(Reader* reader); +void foundReaderInfo(Reader* reader); +Reader* LendBook(Reader* reader, Book* book); +void returnBook(Reader* reader, Book* book); +void save(Book* book); +Book* read1(); + + +void ShowMainMenu() +{ + system("cls"); + printf("\n\n\n\n\n"); + printf("\t|----------------------欢迎进入---------------------------\n"); + printf("\t| 读者管理系统 \n"); + printf("\t| 1、查询图书馆的总信息 \n"); + printf("\t| 2、查询图书馆藏书信息 \n"); + printf("\t| 3、存入新书 \n"); + printf("\t| 4、旧书处理 \n"); + printf("\t| 5、根据书名检索书刊信息 \n"); + printf("\t| 6、查询读者的借阅信息 \n"); + printf("\t| 7、查询读者信息 \n"); + printf("\t| 8、读者借书 \n"); + printf("\t| 9、读者还书 \n"); + printf("\t| 10、文件保存 \n"); + printf("\t| 11、从文件读取 \n"); + printf("\t| 0、退出 \n"); + printf("\t|---------------------------------------------------------\n"); + printf("新打开程序需先添加管理员\n"); + printf("\n"); + printf("\t\t请选择(0-11):"); +}