#include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_NAME_LEN 20 struct Clothes { char id[10]; char brand[20]; char style[20]; char color[10]; int stock; float purchase_price; float sale_price; char payment_method[10]; }; void read_clothes(struct Clothes* clothes) { printf("请输入编号:"); scanf("%s", clothes->id); printf("请输入品牌:"); scanf("%s", clothes->brand); printf("请输入款式:"); scanf("%s", clothes->style); printf("请输入颜色:"); scanf("%s", clothes->color); printf("请输入库存量:"); scanf("%d", &clothes->stock); printf("请输入进货价格:"); scanf("%f", &clothes->purchase_price); printf("请输入销售价格:"); scanf("%f", &clothes->sale_price);为此代码写一段文件导入函数
时间: 2024-02-28 10:54:46 浏览: 75
可以使用C语言中的文件操作函数将文件中的数据导入到结构体数组中,下面是一个示例代码:
```c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_NAME_LEN 20
struct Clothes {
char id[10];
char brand[20];
char style[20];
char color[10];
int stock;
float purchase_price;
float sale_price;
char payment_method[10];
};
void read_clothes(struct Clothes* clothes) {
printf("请输入编号:");
scanf("%s", clothes->id);
printf("请输入品牌:");
scanf("%s", clothes->brand);
printf("请输入款式:");
scanf("%s", clothes->style);
printf("请输入颜色:");
scanf("%s", clothes->color);
printf("请输入库存量:");
scanf("%d", &clothes->stock);
printf("请输入进货价格:");
scanf("%f", &clothes->purchase_price);
printf("请输入销售价格:");
scanf("%f", &clothes->sale_price);
}
void import_clothes_from_file(struct Clothes* clothes, int* count) {
FILE* file = fopen("clothes.txt", "r");
if (file == NULL) {
printf("Failed to open file!");
return;
}
while (!feof(file)) {
fscanf(file, "%s %s %s %s %d %f %f %s", clothes[*count].id, clothes[*count].brand, clothes[*count].style, clothes[*count].color, &clothes[*count].stock, &clothes[*count].purchase_price, &clothes[*count].sale_price, clothes[*count].payment_method);
(*count)++;
}
fclose(file);
}
int main() {
struct Clothes clothes[100];
int count = 0;
import_clothes_from_file(clothes, &count);
for (int i = 0; i < count; i++) {
printf("编号:%s\n", clothes[i].id);
printf("品牌:%s\n", clothes[i].brand);
printf("款式:%s\n", clothes[i].style);
printf("颜色:%s\n", clothes[i].color);
printf("库存量:%d\n", clothes[i].stock);
printf("进货价格:%f\n", clothes[i].purchase_price);
printf("销售价格:%f\n", clothes[i].sale_price);
printf("支付方式:%s\n", clothes[i].payment_method);
printf("\n");
}
return 0;
}
```
在上面的示例代码中,我们定义了一个结构体数组clothes,用于存储从文件中读取的数据。我们使用import_clothes_from_file函数从文件中读取数据,并将其存储到clothes数组中。其中,我们使用fscanf函数逐行读取文件内容,并将其存储到对应的结构体中。
需要注意的是,读取字符串时需要使用%s格式,读取整数时需要使用%d格式,读取浮点数时需要使用%f格式。
在main函数中,我们调用import_clothes_from_file函数读取文件中的数据,并使用循环输出clothes数组中的每个结构体的内容。
需要注意的是,以上示例代码只是一个简单的例子,实际使用中还需要考虑文件不存在、读取格式错误等异常情况。
阅读全文