用C语言实现以下功能代码:货物信息包括:货物编号、货物名称、货物价格、货物数量、入库日期、单价、保管人编号等(货物编号不重复)。 系统以菜单方式工作 输入记录:货物信息录入功能 查询记录:货物录信息查询功能,查询方式:按货物编号或货物名称查询 更新记录:对货物信息进行修改、删除、插入操作。 统计记录:货物信息浏览功能(按货物编号、单价、保管人编号三种方式) 排序记录:按货物数量或者入库时间排序。 输出记录:实现对记录的存盘操作或者将存储记录以表格的形式在屏幕上打印出来。
时间: 2023-08-12 10:04:40 浏览: 178
以下是一个基于命令行界面的C语言实现示例:
```c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
// 定义货物信息结构体
struct Goods {
char id[20]; // 货物编号
char name[20]; // 货物名称
float price; // 货物价格
int quantity; // 货物数量
char in_date[20]; // 入库日期
float unit_price; // 单价
char keeper_id[20]; // 保管人编号
};
// 定义全局变量,保存货物信息
struct Goods goods[100];
int goods_count = 0;
// 菜单函数
void menu() {
printf("1. 货物信息录入\n");
printf("2. 货物信息查询\n");
printf("3. 货物信息更新\n");
printf("4. 货物信息统计\n");
printf("5. 货物信息排序\n");
printf("6. 货物信息输出\n");
printf("7. 退出系统\n");
printf("请选择操作:");
}
// 货物信息录入函数
void add_goods() {
printf("请输入货物信息(货物编号、货物名称、货物价格、货物数量、入库日期、单价、保管人编号,中间用空格分隔):");
scanf("%s %s %f %d %s %f %s", goods[goods_count].id, goods[goods_count].name, &goods[goods_count].price, &goods[goods_count].quantity, goods[goods_count].in_date, &goods[goods_count].unit_price, goods[goods_count].keeper_id);
for (int i = 0; i < goods_count; i++) {
if (strcmp(goods[i].id, goods[goods_count].id) == 0) {
printf("货物编号重复,请重新输入。\n");
return;
}
}
goods_count++;
printf("货物信息录入成功。\n");
}
// 货物信息查询函数
void search_goods() {
int option;
printf("请选择查询方式(1. 按货物编号查询,2. 按货物名称查询):");
scanf("%d", &option);
if (option == 1) {
char id[20];
printf("请输入货物编号:");
scanf("%s", id);
for (int i = 0; i < goods_count; i++) {
if (strcmp(goods[i].id, id) == 0) {
printf("货物编号:%s,货物名称:%s,货物价格:%f,货物数量:%d,入库日期:%s,单价:%f,保管人编号:%s\n", goods[i].id, goods[i].name, goods[i].price, goods[i].quantity, goods[i].in_date, goods[i].unit_price, goods[i].keeper_id);
return;
}
}
printf("未找到对应的货物信息。\n");
} else if (option == 2) {
char name[20];
printf("请输入货物名称:");
scanf("%s", name);
for (int i = 0; i < goods_count; i++) {
if (strcmp(goods[i].name, name) == 0) {
printf("货物编号:%s,货物名称:%s,货物价格:%f,货物数量:%d,入库日期:%s,单价:%f,保管人编号:%s\n", goods[i].id, goods[i].name, goods[i].price, goods[i].quantity, goods[i].in_date, goods[i].unit_price, goods[i].keeper_id);
}
}
} else {
printf("输入无效,请重新选择。\n");
}
}
// 货物信息更新函数
void update_goods() {
int option;
printf("请选择更新方式(1. 修改,2. 删除,3. 插入):");
scanf("%d", &option);
if (option == 1) {
char id[20];
printf("请输入要修改的货物编号:");
scanf("%s", id);
for (int i = 0; i < goods_count; i++) {
if (strcmp(goods[i].id, id) == 0) {
printf("请输入修改后的货物信息(货物编号、货物名称、货物价格、货物数量、入库日期、单价、保管人编号,中间用空格分隔):");
scanf("%s %s %f %d %s %f %s", goods[i].id, goods[i].name, &goods[i].price, &goods[i].quantity, goods[i].in_date, &goods[i].unit_price, goods[i].keeper_id);
printf("货物信息修改成功。\n");
return;
}
}
printf("未找到对应的货物信息。\n");
} else if (option == 2) {
char id[20];
printf("请输入要删除的货物编号:");
scanf("%s", id);
for (int i = 0; i < goods_count; i++) {
if (strcmp(goods[i].id, id) == 0) {
for (int j = i; j < goods_count - 1; j++) {
goods[j] = goods[j + 1];
}
goods_count--;
printf("货物信息删除成功。\n");
return;
}
}
printf("未找到对应的货物信息。\n");
} else if (option == 3) {
printf("请输入要插入的位置(0 ~ %d):", goods_count);
int pos;
scanf("%d", &pos);
if (pos < 0 || pos > goods_count) {
printf("输入无效,请重新选择。\n");
return;
}
printf("请输入要插入的货物信息(货物编号、货物名称、货物价格、货物数量、入库日期、单价、保管人编号,中间用空格分隔):");
for (int i = goods_count; i > pos; i--) {
goods[i] = goods[i - 1];
}
scanf("%s %s %f %d %s %f %s", goods[pos].id, goods[pos].name, &goods[pos].price, &goods[pos].quantity, goods[pos].in_date, &goods[pos].unit_price, goods[pos].keeper_id);
goods_count++;
printf("货物信息插入成功。\n");
} else {
printf("输入无效,请重新选择。\n");
}
}
// 货物信息统计函数
void statistics_goods() {
int option;
printf("请选择统计方式(1. 按货物编号统计,2. 按单价统计,3. 按保管人编号统计):");
scanf("%d", &option);
if (option == 1) {
printf("货物编号\t货物数量\n");
for (int i = 0; i < goods_count; i++) {
printf("%s\t\t%d\n", goods[i].id, goods[i].quantity);
}
} else if (option == 2) {
printf("单价\t\t货物名称\n");
for (int i = 0; i < goods_count; i++) {
printf("%f\t\t%s\n", goods[i].unit_price, goods[i].name);
}
} else if (option == 3) {
printf("保管人编号\t货物数量\n");
for (int i = 0; i < goods_count; i++) {
int count = 0;
for (int j = 0; j < goods_count; j++) {
if (strcmp(goods[j].keeper_id, goods[i].keeper_id) == 0) {
count += goods[j].quantity;
}
}
printf("%s\t\t%d\n", goods[i].keeper_id, count);
}
} else {
printf("输入无效,请重新选择。\n");
}
}
// 比较函数,用于排序
int compare(const void* a, const void* b) {
struct Goods* goods_a = (struct Goods*)a;
struct Goods* goods_b = (struct Goods*)b;
return goods_a->quantity - goods_b->quantity;
}
// 货物信息排序函数
void sort_goods() {
int option;
printf("请选择排序方式(1. 按货物数量排序,2. 按入库时间排序):");
scanf("%d", &option);
if (option == 1) {
qsort(goods, goods_count, sizeof(struct Goods), compare);
printf("货物编号\t货物数量\n");
for (int i = 0; i < goods_count; i++) {
printf("%s\t\t%d\n", goods[i].id, goods[i].quantity);
}
} else if (option == 2) {
printf("货物编号\t入库日期\n");
for (int i = 0; i < goods_count; i++) {
printf("%s\t\t%s\n", goods[i].id, goods[i].in_date);
}
} else {
printf("输入无效,请重新选择。\n");
}
}
// 货物信息输出函数
void output_goods() {
FILE* fp;
fp = fopen("goods.txt", "w");
if (fp == NULL) {
printf("打开文件失败。\n");
return;
}
fprintf(fp, "货物编号\t货物名称\t货物价格\t货物数量\t入库日期\t单价\t保管人编号\n");
for (int i = 0; i < goods_count; i++) {
fprintf(fp, "%s\t\t%s\t\t%f\t%d\t%s\t%f\t%s\n", goods[i].id, goods[i].name, goods[i].price, goods[i].quantity, goods[i].in_date, goods[i].unit_price, goods[i].keeper_id);
}
fclose(fp);
printf("货物信息输出成功。\n");
}
int main() {
while (1) {
menu();
int option;
scanf("%d", &option);
switch (option) {
case 1:
add_goods();
break;
case 2:
search_goods();
break;
case 3:
update_goods();
break;
case 4:
statistics_goods();
break;
case 5:
sort_goods();
break;
case 6:
output_goods();
break;
case 7:
printf("谢谢使用,再见!\n");
return 0;
default:
printf("输入无效,请重新选择。\n");
}
}
}
```
上述代码实现了货物信息的录入、查询、更新、统计、排序和输出等功能。其中,货物信息使用结构体来保存,全局变量`goods`保存所有的货物信息,变量`goods_count`记录货物数量。菜单函数`menu()`用于显示操作菜单,每个功能都对应一个函数实现。在每个功能函数中,使用命令行界面来与用户交互,完成对货物信息的操作。最后,将货物信息输出到文件中,实现了对记录的存盘操作。
阅读全文