c语言设计一个图书管理系统,用户可以用书籍名字查找书籍
时间: 2023-10-03 08:11:01 浏览: 88
C语言设计的图书管理系统
好的,设计一个基于C语言的图书管理系统,实现用户可以通过书籍名字查找书籍的功能,可以按照以下步骤来实现:
1. 定义数据结构
首先,需要定义一个结构体来存储书籍数据,例如:
```c
struct Book {
char name[50]; // 书籍名称
char author[50]; // 作者
char publisher[50]; // 出版社
int year; // 出版年份
float price; // 价格
};
```
2. 实现图书数据的存储和读取
可以使用文件来存储图书数据,例如将数据存储在一个名为books.txt的文件中。可以使用文件输入输出函数来实现数据的读写操作,例如:
```c
void save_books(struct Book books[], int count) {
FILE *fp;
fp = fopen("books.txt", "w");
for (int i = 0; i < count; i++) {
fprintf(fp, "%s,%s,%s,%d,%.2f\n", books[i].name, books[i].author, books[i].publisher, books[i].year, books[i].price);
}
fclose(fp);
}
int load_books(struct Book books[]) {
FILE *fp;
fp = fopen("books.txt", "r");
if (fp == NULL) {
return 0;
}
int count = 0;
while (fscanf(fp, "%[^,],%[^,],%[^,],%d,%f\n", books[count].name, books[count].author, books[count].publisher, &books[count].year, &books[count].price) == 5) {
count++;
}
fclose(fp);
return count;
}
```
其中,save_books函数将books数组中的数据保存到文件中,load_books函数从文件中读取数据并存储到books数组中。
3. 实现查找书籍功能
可以实现一个函数,接受一个书籍名称,遍历books数组,查找与该名称匹配的书籍,并返回该书籍的位置,例如:
```c
int find_book(struct Book books[], int count, char name[]) {
for (int i = 0; i < count; i++) {
if (strcmp(books[i].name, name) == 0) {
return i;
}
}
return -1;
}
```
其中,strcmp函数用于比较两个字符串是否相等,如果相等返回0,否则返回非0值。
完整代码如下:
```c
#include <stdio.h>
#include <string.h>
struct Book {
char name[50]; // 书籍名称
char author[50]; // 作者
char publisher[50]; // 出版社
int year; // 出版年份
float price; // 价格
};
void save_books(struct Book books[], int count) {
FILE *fp;
fp = fopen("books.txt", "w");
for (int i = 0; i < count; i++) {
fprintf(fp, "%s,%s,%s,%d,%.2f\n", books[i].name, books[i].author, books[i].publisher, books[i].year, books[i].price);
}
fclose(fp);
}
int load_books(struct Book books[]) {
FILE *fp;
fp = fopen("books.txt", "r");
if (fp == NULL) {
return 0;
}
int count = 0;
while (fscanf(fp, "%[^,],%[^,],%[^,],%d,%f\n", books[count].name, books[count].author, books[count].publisher, &books[count].year, &books[count].price) == 5) {
count++;
}
fclose(fp);
return count;
}
int find_book(struct Book books[], int count, char name[]) {
for (int i = 0; i < count; i++) {
if (strcmp(books[i].name, name) == 0) {
return i;
}
}
return -1;
}
int main() {
struct Book books[100];
int count = 0;
count = load_books(books);
char name[50];
printf("请输入要查找的书籍名称:");
scanf("%s", name);
int index = find_book(books, count, name);
if (index == -1) {
printf("没有找到该书籍!\n");
} else {
printf("书籍信息如下:\n");
printf("书籍名称:%s\n", books[index].name);
printf("作者:%s\n", books[index].author);
printf("出版社:%s\n", books[index].publisher);
printf("出版年份:%d\n", books[index].year);
printf("价格:%.2f\n", books[index].price);
}
return 0;
}
```
阅读全文