当前位置:   article > 正文

C语言图书管理系统_c语言实现图书管理系统

c语言实现图书管理系统

该代码引用于https://blog.csdn.net/qq_45771313/article/details/120517965#comments_26291526
特点是在vs2022可以直接运行。
代码有重复的地方注意一下。



#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <conio.h>     /*getchar()函数使用的头文件*/
#include <windows.h>  /*Sleep()函数使用的头文件*/
#include <string.h>   /*strcmp()函数使用的头文件*/

#define LEN_BOOK sizeof(struct Book)
#define LEN_READER sizeof(struct Reader)
#define BOOK_DATA astBook[i].iNum,astBook[i].acName,astBook[i].acAuthor,astBook[i].acPress,astBook[i].iAmount
#define READER_DATA astReader[i].iNum,astReader[i].acName,astReader[i].acSex,astReader[i].iAmount,astReader[i].iMax,astReader[i].aiBookId
#define BOOK_NUM 200
#define READER_NUM 100

int SearchBook();
int SearchReader();

/*图书结构体:图书编号,图书名,图书作者,出版社,库存量*/
struct Book
{
	int iNum;
	char acName[15];
	char acAuthor[15];
	char acPress[15];
	int iAmount;
};

/*读者:读者编号,读者姓名,性别,可借书数,读者已借书的编号*/
struct Reader
{
	int iNum;
	char acName[15];
	char acSex[4];
	int iMax;
	int iAmount;
	int aiBookId[10];
};

struct Book astBook[BOOK_NUM];
struct Reader astReader[READER_NUM];

void ShowMainMenu()
{
	system("cls");/*清屏函数*/
	printf("\n\n\n\n\n");
	printf("\t|----------------------欢迎进入---------------------------|\n");
	printf("\t|                   图书馆管理系统                        |\n");
	printf("\t|                       主菜单                            |\n");
	printf("\t|                   1、图书管理                           |\n");
	printf("\t|                   2、读者管理                           |\n");
	printf("\t|                   3、借/还书登记                        |\n");
	printf("\t|                   0、退出系统                           |\n");
	printf("\t|---------------------------------------------------------|\n");
	printf("\n");
	printf("\t\t请选择(0-3):");
}

void ShowBookMenu()
{
	system("cls");
	printf("\n\n\n\n\n");
	printf("\t|----------------------欢迎进入---------------------------|\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|                  0、返回主菜单                          |\n");
	printf("\t|---------------------------------------------------------|\n");
	printf("\n");
	printf("\t\t请选择(0-5):");
}

void ShowReaderMenu()
{
	system("cls");
	printf("\n\n\n\n\n");
	printf("\t|----------------------欢迎进入---------------------------|\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|                  0、返回主菜单                          |\n");
	printf("\t|---------------------------------------------------------|\n");
	printf("\n");
	printf("\t\t请选择(0-5):");
}

void ShowBorrowReturnMenu()
{
	system("cls");
	printf("\n\n\n\n\n");
	printf("\t|----------------------欢迎进入---------------------------|\n");
	printf("\t|                    借/还书登记                          |\n");
	printf("\t|                       子菜单                            |\n");
	printf("\t|                    1、借书登记                          |\n");
	printf("\t|                    2、还书登记                          |\n");
	printf("\t|                   0、返回主菜单                         |\n");
	printf("\t|---------------------------------------------------------|\n");
	printf("\n");
	printf("\t\t请选择(0-2):");
}

void ShowModifyBookMenu()
{
	printf("\n");
	printf("\t|                  1、编号                        |\n");
	printf("\t|                  2、书名                        |\n");
	printf("\t|                  3、作者                        |\n");
	printf("\t|                  4、出版社                      |\n");
	printf("\t|                  5、库存                        |\n");
	printf("\n");
	printf("请输入所要修改的信息(键入相应的数字:1-5 ):");

}

void ShowModifyReaderMenu()
{
	printf("\n");
	printf("\t|                  1、编号                        |\n");
	printf("\t|                  2、名字                        |\n");
	printf("\t|                  3、性别                        |\n");
	printf("\t|                  4、最大可借书数                |\n");
	printf("\n");
	printf("请输入所要修改的信息(键入相应的数字:1-4 )\n");
}

/*分别读取图书和读者信息转存至astBook和astReader数组中*/
int ReadBookFile(char* pcMode)
{
	int iBookRecord = 0;
	FILE* pfBook;   /*文件指针*/

	pfBook = fopen("book.txt", pcMode);
	if (pfBook == NULL)
		return -1;
	while (!feof(pfBook))
	{
		if (fread(&astBook[iBookRecord], LEN_BOOK, 1, pfBook))
			iBookRecord++;
	}
	fclose(pfBook);
	return iBookRecord;
}

int ReadReaderFile(char* pcMode)
{
	int iReaderRecord = 0;
	FILE* pfReader;
	pfReader = fopen("reader.txt", pcMode);
	if (pfReader == NULL)
		return -1;
	while (!feof(pfReader))
	{
		if (fread(&astReader[iReaderRecord], LEN_READER, 1, pfReader) == 1)
			iReaderRecord++;
	}
	fclose(pfReader);
	return iReaderRecord;
}

void SaveBookFile(int iBookId)
{
	FILE* pfBook;
	/*读写方式打开文件,文件必须已经存在,指针指向文件首部,wb会删掉原有文件,ab指针指向文件尾部*/
	pfBook = fopen("book.txt", "rb+");
	if (pfBook != NULL)
	{
		fseek(pfBook, LEN_BOOK * iBookId, SEEK_SET);
		if (fwrite(&astBook[iBookId], LEN_BOOK, 1, pfBook) != 1)
			printf("无法保存该信息!\n");
	}
	fclose(pfBook);
}

void SaveReaderFile(int iReaderId)
{
	FILE* pfReader;
	pfReader = fopen("reader.txt", "rb+");
	if (pfReader != NULL)
	{
		fseek(pfReader, LEN_READER * iReaderId, SEEK_SET);
		if (fwrite(&astReader[iReaderId], LEN_READER, 1, pfReader) != 1)
			printf("无法保存该信息!\n");
	}
	fclose(pfReader);
}


/*==============================借还书管理相关函数============================*/
void BorrowBook()
{
	system("cls");
	int iBookId, iReaderId, iBorrow, i;

	/*输入要借书的读者编号,判断编号是否存在,显示该读者已借图书的信息*/
	iReaderId = SearchReader();
	if (iReaderId == -1)
		return;
	iBorrow = astReader[iReaderId].iMax - astReader[iReaderId].iAmount;
	if (iBorrow == 0)
		printf("该读者目前没有借任何书\n");
	else
	{
		printf("\t该读者当前所借图书为:");
		for (i = 0; i < iBorrow; i++)
			printf("%d ", astReader[iReaderId].aiBookId[i]);
		printf("\n\n");
	}

	/*若读者可借书数量为0,不允许再借书,退出*/
	if (astReader[iReaderId].iAmount == 0)
	{
		printf("该读者可借书量为零,不能继续借书!\n");
		return;
	}

	/*输入要借的书号,查找书号是否存在,判断该书库存是否为0*/
	printf("\n按任意键输入要借阅的图书信息\n");
	getchar();

	iBookId = SearchBook();
	if (iBookId == -1)
		return;
	if (astBook[iBookId].iAmount == 0)
	{
		printf("该图书库存量为零!图书不可借\n");
		return;
	}
	astReader[iReaderId].aiBookId[iBorrow] = astBook[iBookId].iNum;/*图书库存不为0时,允许借书*/
	astBook[iBookId].iAmount--;     /*该图书的库存量减1*/
	astReader[iReaderId].iAmount--; /*该读者的可借书的数量减1*/

	SaveBookFile(iBookId);	     /*保存该条图书信息到文件*/
	SaveReaderFile(iReaderId);   /*保存该条读者信息到文件*/

	printf("借书成功!\n");
}

void ReturnBook()
{
	int iBookId, iReaderId, iBorrow, i, j;

	system("cls");
	iReaderId = SearchReader();
	if (iReaderId == -1)
		return;
	iBorrow = astReader[iReaderId].iMax - astReader[iReaderId].iAmount;

	if (iBorrow == 0)
	{
		printf("\t该读者没有借任何书,无需归还\n");
		return;
	}
	else
	{
		printf("\t该读者当前所借图书为:");
		for (i = 0; i < iBorrow; i++)
			printf("%d ", astReader[iReaderId].aiBookId[i]);
		printf("\n\n");
	}

	printf("按任意键输入要归还的图书信息\n");
	getchar();

	iBookId = SearchBook();
	if (iBookId == -1)
		return;
	for (i = 0; i < iBorrow; i++)
		if (astReader[iReaderId].aiBookId[i] == astBook[iBookId].iNum)
		{
			for (j = i; j < iBorrow - 1; j++)
				astReader[iReaderId].aiBookId[j] = astReader[iReaderId].aiBookId[j + 1];
			astReader[iReaderId].aiBookId[iBorrow] = 0;

			astBook[iBookId].iAmount++;      /*该书的库存数加1*/
			astReader[iReaderId].iAmount++;  /*该读者的最大可借阅数加1*/
			break;
		}

	if (i == iBorrow)/*遍历循环,未找到该书*/
	{
		printf("该读者没有借这本书,无需归还\n");
		return;
	}

	SaveBookFile(iBookId);      /*保存该条图书信息到文件*/
	SaveReaderFile(iReaderId);	/*保存该条读者信息到文件*/

	printf("还书成功!\n");
}

/*==============================图书管理相关函数============================*/

/*显示图书函数*/
void ShowBook()
{
	int i, iBookRecord;/*整型变量,i用以循环计数,iBookRecord用以计量图书的条数*/

	system("cls");

	iBookRecord = ReadBookFile("rb");
	if (iBookRecord == -1)
		printf("文件打开失败!请先新增加图书信息!\n");
	else if (iBookRecord == 0)
		printf("文件中没有图书信息!\n");
	else
	{
		printf("\t|---------------------------------------------------------|\n");
		printf("\t  %-6s%-16s%-10s%-20s%-4s\n", "编号", "书名", "作者", "出版社", "库存");
		for (i = 0; i < iBookRecord; i++)/*显示图书信息*/
			printf("\t  %-6d%-16s%-10s%-20s%-4d\n", BOOK_DATA);
		printf("\t|---------------------------------------------------------|\n");
	}
}

void AddBook()
{
	FILE* pfBook;/*文件指针*/
	int iBookRecord, iFlagExist, i;
	char cFlag;

	system("cls");

	iBookRecord = ReadBookFile("ab+");  /*ab+追加方式打开或新建二进制文件*/
	if (iBookRecord == -1)
	{
		printf("文件打开失败!\n");
		return;
	}
	else if (iBookRecord == 0)
		printf("没有图书记录!\n");
	else
		ShowBook();/*如果图书记录不为零则调用showBook显示所有图书*/

	/*以下代码为循环录入图书信息*/
	printf("请选择是否键入信息(y/n):");
	cFlag = getchar();
	getchar();
	if (cFlag == 'n')
		return;
	/*键入'y'则开始进行写入,首先输入图书编号,遍历数组并判断是否已存在该图书,若存在提示用户重新输入*/
	pfBook = fopen("book.txt", "ab+");
	if (pfBook == NULL)
	{
		printf("文件打开失败!\n");
		return;
	}

	while (cFlag == 'y')
	{
		if (iBookRecord >= BOOK_NUM)/*若超过M容量范围则不能继续写入*/
		{
			printf("记录已满!");
			fclose(pfBook);
			return;
		}

		printf("请输入图书编号:");
		do {
			iFlagExist = 0;
			scanf_s("%d", &astBook[iBookRecord].iNum);
			getchar();
			for (i = 0; i < iBookRecord; i++)
			{
				if (astBook[i].iNum == astBook[iBookRecord].iNum)
				{
					iFlagExist = 1;
					printf("该图书编号已存在,请重新输入:");
					break;
				}
			}
		} while (iFlagExist == 1);

		/*新增图书的基本信息*/
		printf("请输入图书名称:");
		gets(astBook[iBookRecord].acName);
		printf("请输入图书作者:");
		gets(astBook[iBookRecord].acAuthor);
		printf("请输入图书出版社:");
		gets(astBook[iBookRecord].acPress);
		printf("请输入图书库存量:");
		scanf_s("%d", &astBook[iBookRecord].iAmount);
		getchar();
		/*将新增的图书信息写入文件中*/
		if (fwrite(&astBook[iBookRecord], LEN_BOOK, 1, pfBook) != 1)
		{
			printf("无法保存该信息!\n");
			return;
		}
		else
		{
			printf("%d号图书信息已保存!\n", astBook[iBookRecord].iNum);
			iBookRecord++;
		}
		printf("继续输入信息吗(y/n)");
		cFlag = getchar();
		getchar();
	}
	fclose(pfBook);
	printf("添加图书执行完毕!\n");
}


void DeleteBook()
{
	FILE* pfBook;/*文件指针*/
	int iBookId, iBookRecord, i;
	char cFlag;/*字符型变量,用于选择*/

	system("cls");

	iBookId = SearchBook();

	if (iBookId == -1)
		return;

	iBookRecord = ReadBookFile("rb");
	printf("已找到该图书,是否删除?(y/n)");
	cFlag = getchar();
	getchar();

	if (cFlag == 'n')
		return;
	else if (cFlag == 'y')
	{
		for (i = iBookId; i < iBookRecord - 1; i++)
			astBook[i] = astBook[i + 1];/*数组依次前移*/
		iBookRecord--;
	}

	pfBook = fopen("book.txt", "wb");
	if (pfBook != NULL)
	{
		for (i = 0; i < iBookRecord; i++)/*将修改过的图书信息写入文件*/
		{
			if (fwrite(&astBook[i], LEN_BOOK, 1, pfBook) != 1)
			{
				printf("无法保存该信息!\n");
				return;
			}
		}

		fclose(pfBook);
		printf("%d号图书信息已删除!\n", astBook[iBookId].iNum);
	}
}

void ModifyBook()
{
	int iBookId, iBookRecord, iFlagExist, iItem, iNum, i;

	system("cls");

	iBookId = SearchBook();  /*调用查找图书函数获得图书记录号*/

	if (iBookId == -1) /*未找到该序号的图书,直接返回*/
		return;

	/*找到该序号的图书,可以进行修改操作*/
	iBookRecord = ReadBookFile("rb");
	ShowModifyBookMenu();   /*显示修改选项的菜单*/

	scanf_s("%d", &iItem);
	getchar();
	switch (iItem)
	{
	case 1:
		printf("请输入图书编号:");
		do {
			iFlagExist = 0;
			scanf_s("%d", &iNum);
			getchar();
			for (i = 0; i < iBookRecord; i++)
			{
				if (iNum == astBook[i].iNum && i != iBookId)
				{
					iFlagExist = 1;
					printf("错误,该图书编号已存在,请重新输入:");
					break;
				}
			}
		} while (iFlagExist == 1);
		astBook[iBookId].iNum = iNum;
		break;
	case 2:
		printf("请输入图书名称:");
		gets(astBook[iBookId].acName);
		break;
	case 3:
		printf("请输入图书作者:");
		gets(astBook[iBookId].acAuthor);
		break;
	case 4:
		printf("请输入图书出版社:");
		gets(astBook[iBookId].acPress);
		break;
	case 5:
		printf("请输入图书库存量:");
		scanf_s("%d", &astBook[iBookId].iAmount);
		getchar();
		break;
	}
	/*调用SaveBookFile函数将修改记录存入文件*/
	SaveBookFile(iBookId);
	printf("图书信息修改成功!\n");
}

int SearchBook()
{
	int iBookNum, iBookRecord, iBookId, i;
	system("cls");

	iBookRecord = ReadBookFile("rb");/*以"rb"形式打开文件,如果失败则返回*/
	if (iBookRecord == -1)
	{
		printf("文件打开失败!\n");
		printf("| 按任意键返回子菜单 |");
		getchar();
		return -2;/*文件打开失败,返回-2*/
	}
	else if (iBookRecord == 0)
	{
		printf("没有图书记录!\n");
		printf("| 按任意键返回子菜单 |");
		getchar();
		return -3; /*没有记录,返回-3*/
	}

	/*以下进入查找程序*/
	printf("请输入图书编号:");
	scanf_s("%d", &iBookNum);
	getchar();
	for (i = 0; i < iBookRecord; i++)
	{
		if (iBookNum == astBook[i].iNum)
		{
			iBookId = i;/*找到记录,返回记录号*/
			printf("%d号图书信息如下:\n", iBookNum);
			printf("\t|---------------------------------------------------------|\n");
			printf("\t  %-6s%-16s%-10s%-20s%-4s\n", "编号", "书名", "作者", "出版社", "库存");
			printf("\t  %-6d%-16s%-10s%-20s%-4d\n", BOOK_DATA);
			printf("\t|---------------------------------------------------------|\n");
			break;
		}
	}
	if (i == iBookRecord)/*遍历循环,没有找到记录,提示用户*/
	{
		printf("找不到%d号图书信息!\n", iBookNum);
		iBookId = -1;/*找不到记录,返回-1*/
	}
	return iBookId;
}

/*显示读者信息函数*/
void ShowReader()
{
	int i, iReaderRecord;
	system("cls");

	iReaderRecord = ReadReaderFile("rb");
	if (iReaderRecord == -1)
		printf("文件打开失败!请先添加读者信息!\n");
	else if (iReaderRecord == 0)
		printf("文件中没有读者信息\n");
	else
	{
		printf("\t|---------------------------------------------------------|\n");
		printf("\t  %-8s%-12s%-6s%-16s%-16s\n", "编号", "姓名", "性别", "当前可借书数量", "最大可借书数量");
		for (i = 0; i < iReaderRecord; i++)
			printf("\t  %-8d%-12s%-6s%-16d%-16d\n", READER_DATA);
		printf("\t|---------------------------------------------------------|\n");
	}

}
/*==============================读者管理相关函数============================*/

/*添加读者信息函数*/
void AddReader()
{
	FILE* pfReader;
	int iFlagExist, iReaderRecord, i;
	char cFlag;

	system("cls");

	iReaderRecord = ReadReaderFile("ab+"); /*ab+追加方式打开或新建二进制文件*/
	if (iReaderRecord == -1)
	{
		printf("文件打开失败!\n");
		return;
	}
	else if (iReaderRecord == 0)
		printf("没有读者记录!\n");
	else
		ShowReader();

	/*以下代码为循环录入读者信息*/
	printf("请选择是否键入信息(y/n):");
	cFlag = getchar();
	getchar();
	if (cFlag == 'n')
		return;

	pfReader = fopen("reader.txt", "ab+");
	if (pfReader == NULL)
	{
		printf("文件打开失败!\n");
		return;
	}

	while (cFlag == 'y')
	{
		if (iReaderRecord >= READER_NUM)
		{
			printf("记录已满!");
			fclose(pfReader);
			return;
		}
		printf("请输入读者编号:");
		do
		{
			iFlagExist = 0;
			scanf_s("%d", &astReader[iReaderRecord].iNum);
			getchar();

			for (i = 0; i < iReaderRecord; i++)
			{
				if (astReader[i].iNum == astReader[iReaderRecord].iNum)
				{
					iFlagExist = 1;
					printf("该读者编号已存在!请重新输入:");
				}
			}
		} while (iFlagExist == 1);

		printf("请输入读者姓名:");
		gets(astReader[iReaderRecord].acName);
		printf("请输入读者性别:F/M:");
		while (gets(astReader[iReaderRecord].acSex) != NULL)
		{
			if (strcmp(astReader[iReaderRecord].acSex, "F") == 0 || strcmp(astReader[iReaderRecord].acSex, "M") == 0)
				break;
			printf("错误,只能输入'F'或者'M',请重新输入\n");
		}
		printf("请输入读者最大可借书数:(范围为5-10):");
		while (scanf_s("%d", &astReader[iReaderRecord].iMax) == 1)
		{
			getchar();
			if (astReader[iReaderRecord].iMax >= 5 && astReader[iReaderRecord].iMax <= 10)
				break;
			printf("错误,读者最大借阅数范围为5-10,请重新输入\n");
		}
		astReader[iReaderRecord].iAmount = astReader[iReaderRecord].iMax;

		for (i = 0; i < astReader[iReaderRecord].iMax; i++)//数组初始化为0,表示该读者一本书也没有借;
			astReader[iReaderRecord].aiBookId[i] = 0;


		if (fwrite(&astReader[iReaderRecord], LEN_READER, 1, pfReader) != 1)
		{
			printf("无法保存该信息!\n");
		}
		else
		{
			printf("%d号读者信息已保存!\n", astReader[iReaderRecord].iNum);
			iReaderRecord++;
		}
		printf("继续输入信息吗(y/n)");
		cFlag = getchar();
		getchar();
	}
	fclose(pfReader);
	printf("添加读者执行完毕!\n");
}

void DeleteReader()
{
	FILE* pfReader;
	int iReaderId, iReaderRecord, i;
	char cFlag;

	system("cls");

	iReaderId = SearchReader();
	if (iReaderId == -1)
		return;

	iReaderRecord = ReadReaderFile("rb");
	printf("已找到该读者,是否删除?(y/n)");
	cFlag = getchar();
	getchar();

	if (cFlag == 'n')
		return;
	else if (cFlag == 'y')
	{
		for (i = iReaderId; i < iReaderRecord - 1; i++)
			astReader[i] = astReader[i + 1];
		iReaderRecord--;
	}

	pfReader = fopen("reader.txt", "wb");
	if (pfReader != NULL)
	{
		for (i = 0; i < iReaderRecord; i++)
		{
			if (fwrite(&astReader[i], LEN_READER, 1, pfReader) != 1)
			{
				printf("无法保存该信息!\n");
				return;
			}
		}
		fclose(pfReader);
		printf("%d号读者信息已删除!\n", astReader[iReaderId].iNum);
	}
}

void ModifyReader()
{
	int iReaderId, iReaderRecord, iBorrow, iItem, iNum, iMax, iFlagExist, i;

	system("cls");
	iReaderId = SearchReader();
	if (iReaderId == -1)
		return;

	/*能查询到该读者,则可以进行修改操作*/
	iReaderRecord = ReadReaderFile("rb");/*以"rb"形式打开文件,如果失败则返回*/
	ShowModifyReaderMenu();
	scanf_s("%d", &iItem);
	getchar();

	switch (iItem)
	{
	case 1:
		printf("请输入读者编号:");
		do {
			iFlagExist = 0;
			scanf_s("%d", &iNum);
			getchar();
			for (i = 0; i < iReaderRecord; i++)
				if (iNum == astReader[i].iNum && i != iReaderId)
				{
					iFlagExist = 1;
					printf("错误,该读者编号已存在,请重新输入:\n");
					break;
				}
		} while (iFlagExist == 1);
		astReader[iReaderId].iNum = iNum;
		break;
	case 2:
		printf("请输入读者名字:");
		gets(astReader[iReaderId].acName);
		break;
	case 3:
		printf("请输入读者性别:F/M:");
		while (gets(astReader[iReaderId].acSex) != NULL)
		{
			if (strcmp(astReader[iReaderId].acSex, "F") == 0 || strcmp(astReader[iReaderId].acSex, "M") == 0)
				break;
			printf("错误,只能输入'F'或者'M',请重新输入\n");
		}
		break;
	case 4:
		iBorrow = astReader[iReaderId].iMax - astReader[iReaderId].iAmount;
		printf("请输入读者最大可借书数:(范围为5-10):");
		while (scanf_s("%d", &iMax) == 1)
		{
			getchar();
			if (iMax >= 5 && iMax <= 10)
			{
				if (iBorrow > iMax)
				{
					printf("该读者目前借阅图书数量大于该数目,需要先还书后修改!\n");
					return;
				}
				else
				{
					astReader[iReaderId].iMax = iMax;
					astReader[iReaderId].iAmount = iMax - iBorrow;
					for (i = iBorrow; i < iMax; i++)
						astReader[iReaderId].aiBookId[i] = 0;
					break;
				}
			}
			printf("错误,读者最大借阅数范围为5-10,请重新输入\n");
		}
		break;
	}/*switch 结束*/

	SaveReaderFile(iReaderId);
	printf("读者信息修改成功!\n");
}

int SearchReader()
{
	int iReaderNum, iReaderRecord, iReaderId, i;
	system("cls");

	iReaderRecord = ReadReaderFile("rb");
	if (iReaderRecord == -1)
	{
		printf("文件打开失败!\n");
		return -2; /*文件打开失败,返回-2*/
	}
	else if (iReaderRecord == 0)
	{
		printf("没有读者记录!\n");
		return -3; /*没有记录,返回-3*/
	}

	printf("请输入读者编号:");
	scanf_s("%d", &iReaderNum);
	getchar();
	for (i = 0; i < iReaderRecord; i++)
	{
		if (iReaderNum == astReader[i].iNum)
		{
			iReaderId = i; /*找到记录,返回记录号*/
			printf("%d号读者信息如下:\n", iReaderNum);
			printf("\t|---------------------------------------------------------|\n");
			printf("\t  %-8s%-12s%-6s%-16s%-16s\n", "编号", "姓名", "性别", "当前可借书数量", "最大可借书数量");
			printf("\t  %-8d%-12s%-6s%-16d%-16d\n", READER_DATA);
			printf("\t|---------------------------------------------------------|\n");
			printf("\n");
			break;
		}
	}
	if (i == iReaderRecord)/*遍历循环,没有找到记录,提示用户*/
	{
		printf("找不到%d号读者信息!\n", iReaderNum);
		iReaderId = -1;/*找不到记录,返回-1*/
	}
	return iReaderId;
}

void ManageBook()
{
	int iItem;

	ShowBookMenu();	/*显示子菜单*/
	scanf_s("%d", &iItem);
	getchar();
	/*用while循环和switch语句进行选择*/
	while (iItem)
	{
		switch (iItem)
		{
		case 1:
			ShowBook();/*显示图书信息*/
			break;
		case 2:
			AddBook();/*新增图书信息*/
			break;
		case 3:
			SearchBook();/*查找图书*/
			break;
		case 4:
			DeleteBook();/*删除图书*/
			break;
		case 5:
			ModifyBook();/*修改图书信息*/
			break;
		default:
			printf("\t\t请输入正确的数字!\n\t\t");
		}
		printf("| 按任意键返回子菜单 |");
		getchar();   /*接收用户输入任意字符*/

		ShowBookMenu();
		scanf_s("%d", &iItem);
		getchar();
	}
}

void ManageReader()
{
	int iItem = 0;
	ShowReaderMenu();

	scanf_s("%d", &iItem);
	getchar();

	while (iItem)
	{
		switch (iItem)
		{
		case 1:
			ShowReader();
			break;
		case 2:
			AddReader();
			break;
		case 3:
			SearchReader();
			break;
		case 4:
			DeleteReader();
			break;
		case 5:
			ModifyReader();
			break;
		default:
			printf("\t\t请输入正确的数字!\n\t\t");
		}

		printf("| 按任意键返回子菜单 |");
		getchar();   /*接收用户输入任意字符*/
		ShowReaderMenu();
		scanf_s("%d", &iItem);
		getchar();
	}
}

void BorrowReturnManage()
{
	int iItem = 0;
	ShowBorrowReturnMenu();

	scanf_s("%d", &iItem);
	getchar();

	while (iItem)
	{
		switch (iItem)
		{
		case 1:
			BorrowBook();
			break;
		case 2:
			ReturnBook();
			break;
		default:
			printf("\t\t请输入正确的数字!\n\t\t");
		}
		printf("| 按任意键返回子菜单 |");
		getchar();
		ShowBorrowReturnMenu();
		scanf_s("%d", &iItem);
		getchar();
	}
}
derMenu(int iItem) {
	scanf_s("%d", &iItem);
	getchar();
}
int main(void)
{
	int iItem;
	ShowMainMenu();/*调用ShowMainMenu函数绘制界面*/
	scanf_s("%d", &iItem);/*提示用户输入数字*/
	getchar();
	while (iItem)
	{
		switch (iItem)
		{
		case 1:
			ManageBook();
			break;
		case 2:
			ManageReader();
			break;
		case 3:
			BorrowReturnManage();
			break;
		default:
			printf("\t\t请输入正确的数字!\n\t\t程序将于3秒后跳转到主菜单");
			Sleep(3000);
		}
		ShowMainMenu();
		scanf_s("%d", &iItem);
		getchar();
	}
	return 0;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 443
  • 444
  • 445
  • 446
  • 447
  • 448
  • 449
  • 450
  • 451
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • 459
  • 460
  • 461
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 472
  • 473
  • 474
  • 475
  • 476
  • 477
  • 478
  • 479
  • 480
  • 481
  • 482
  • 483
  • 484
  • 485
  • 486
  • 487
  • 488
  • 489
  • 490
  • 491
  • 492
  • 493
  • 494
  • 495
  • 496
  • 497
  • 498
  • 499
  • 500
  • 501
  • 502
  • 503
  • 504
  • 505
  • 506
  • 507
  • 508
  • 509
  • 510
  • 511
  • 512
  • 513
  • 514
  • 515
  • 516
  • 517
  • 518
  • 519
  • 520
  • 521
  • 522
  • 523
  • 524
  • 525
  • 526
  • 527
  • 528
  • 529
  • 530
  • 531
  • 532
  • 533
  • 534
  • 535
  • 536
  • 537
  • 538
  • 539
  • 540
  • 541
  • 542
  • 543
  • 544
  • 545
  • 546
  • 547
  • 548
  • 549
  • 550
  • 551
  • 552
  • 553
  • 554
  • 555
  • 556
  • 557
  • 558
  • 559
  • 560
  • 561
  • 562
  • 563
  • 564
  • 565
  • 566
  • 567
  • 568
  • 569
  • 570
  • 571
  • 572
  • 573
  • 574
  • 575
  • 576
  • 577
  • 578
  • 579
  • 580
  • 581
  • 582
  • 583
  • 584
  • 585
  • 586
  • 587
  • 588
  • 589
  • 590
  • 591
  • 592
  • 593
  • 594
  • 595
  • 596
  • 597
  • 598
  • 599
  • 600
  • 601
  • 602
  • 603
  • 604
  • 605
  • 606
  • 607
  • 608
  • 609
  • 610
  • 611
  • 612
  • 613
  • 614
  • 615
  • 616
  • 617
  • 618
  • 619
  • 620
  • 621
  • 622
  • 623
  • 624
  • 625
  • 626
  • 627
  • 628
  • 629
  • 630
  • 631
  • 632
  • 633
  • 634
  • 635
  • 636
  • 637
  • 638
  • 639
  • 640
  • 641
  • 642
  • 643
  • 644
  • 645
  • 646
  • 647
  • 648
  • 649
  • 650
  • 651
  • 652
  • 653
  • 654
  • 655
  • 656
  • 657
  • 658
  • 659
  • 660
  • 661
  • 662
  • 663
  • 664
  • 665
  • 666
  • 667
  • 668
  • 669
  • 670
  • 671
  • 672
  • 673
  • 674
  • 675
  • 676
  • 677
  • 678
  • 679
  • 680
  • 681
  • 682
  • 683
  • 684
  • 685
  • 686
  • 687
  • 688
  • 689
  • 690
  • 691
  • 692
  • 693
  • 694
  • 695
  • 696
  • 697
  • 698
  • 699
  • 700
  • 701
  • 702
  • 703
  • 704
  • 705
  • 706
  • 707
  • 708
  • 709
  • 710
  • 711
  • 712
  • 713
  • 714
  • 715
  • 716
  • 717
  • 718
  • 719
  • 720
  • 721
  • 722
  • 723
  • 724
  • 725
  • 726
  • 727
  • 728
  • 729
  • 730
  • 731
  • 732
  • 733
  • 734
  • 735
  • 736
  • 737
  • 738
  • 739
  • 740
  • 741
  • 742
  • 743
  • 744
  • 745
  • 746
  • 747
  • 748
  • 749
  • 750
  • 751
  • 752
  • 753
  • 754
  • 755
  • 756
  • 757
  • 758
  • 759
  • 760
  • 761
  • 762
  • 763
  • 764
  • 765
  • 766
  • 767
  • 768
  • 769
  • 770
  • 771
  • 772
  • 773
  • 774
  • 775
  • 776
  • 777
  • 778
  • 779
  • 780
  • 781
  • 782
  • 783
  • 784
  • 785
  • 786
  • 787
  • 788
  • 789
  • 790
  • 791
  • 792
  • 793
  • 794
  • 795
  • 796
  • 797
  • 798
  • 799
  • 800
  • 801
  • 802
  • 803
  • 804
  • 805
  • 806
  • 807
  • 808
  • 809
  • 810
  • 811
  • 812
  • 813
  • 814
  • 815
  • 816
  • 817
  • 818
  • 819
  • 820
  • 821
  • 822
  • 823
  • 824
  • 825
  • 826
  • 827
  • 828
  • 829
  • 830
  • 831
  • 832
  • 833
  • 834
  • 835
  • 836
  • 837
  • 838
  • 839
  • 840
  • 841
  • 842
  • 843
  • 844
  • 845
  • 846
  • 847
  • 848
  • 849
  • 850
  • 851
  • 852
  • 853
  • 854
  • 855
  • 856
  • 857
  • 858
  • 859
  • 860
  • 861
  • 862
  • 863
  • 864
  • 865
  • 866
  • 867
  • 868
  • 869
  • 870
  • 871
  • 872
  • 873
  • 874
  • 875
  • 876
  • 877
  • 878
  • 879
  • 880
  • 881
  • 882
  • 883
  • 884
  • 885
  • 886
  • 887
  • 888
  • 889
  • 890
  • 891
  • 892
  • 893
  • 894
  • 895
  • 896
  • 897
  • 898
  • 899
  • 900
  • 901
  • 902
  • 903
  • 904
  • 905
  • 906
  • 907
  • 908
  • 909
  • 910
  • 911
  • 912
  • 913
  • 914
  • 915
  • 916
  • 917
  • 918
  • 919
  • 920
  • 921
  • 922
  • 923
  • 924
  • 925
  • 926
  • 927
  • 928
  • 929
  • 930
  • 931
  • 932
  • 933
  • 934
  • 935
  • 936
  • 937
  • 938
  • 939
  • 940
  • 941
  • 942
  • 943
  • 944
  • 945
  • 946
  • 947
  • 948
  • 949
  • 950
  • 951
  • 952
  • 953
  • 954
  • 955
  • 956
  • 957
  • 958
  • 959
  • 960
  • 961
  • 962
  • 963
  • 964
  • 965
  • 966
  • 967
  • 968
  • 969
  • 970
  • 971
  • 972
  • 973
  • 974
  • 975
  • 976
  • 977
  • 978
  • 979
  • 980
  • 981
  • 982
  • 983
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/499854
推荐阅读
相关标签
  

闽ICP备14008679号