按照图书名查询图书借阅记录C语言代码
时间: 2023-10-22 11:03:38 浏览: 76
C语言-阅览室图书借阅管理软件
以下是一个简单的示例代码,用于按照图书名查询图书借阅记录。请注意,这只是一个示例,实际代码可能需要根据具体的需求进行修改。
```c
#include <stdio.h>
#include <string.h>
struct BorrowRecord {
char bookName[50];
char borrowerName[50];
char borrowDate[20];
};
int main() {
struct BorrowRecord records[100]; // 最多存储100条记录
int recordCount = 0; // 当前记录数
char searchBookName[50]; // 待查询的图书名
// 假设这里有一些代码用于从数据库中读取借阅记录并存储在records数组中
printf("请输入要查询的图书名:");
scanf("%s", searchBookName);
// 遍历记录数组,查找与待查询图书名匹配的记录
for (int i = 0; i < recordCount; i++) {
if (strcmp(records[i].bookName, searchBookName) == 0) {
printf("图书名称:%s\n", records[i].bookName);
printf("借阅人:%s\n", records[i].borrowerName);
printf("借阅日期:%s\n", records[i].borrowDate);
}
}
return 0;
}
```
阅读全文