超市管理系统

写一个超市管理系统浅尝一下8!以下是此系统运行图

存入货物界面

查看货物界面

购物车界面

 结算界面

以下是部分代码 

void main()
{
	printf("***********************************\n");
	printf("     欢迎进入超市管理系统\n");
	printf("***********************************\n");
	while (1)
	{
		switch (menu())
		{
		case 1:
			establish(); break;
		case 2:
			dis_all(); break;
		case 3:
			shop_cart(); break;
		case 4:
			calculate(); break;
		case 5:
			printf("感谢使用,再见!\n");
			exit(0);
		}
	}
}

int menu()
{
	char str[5];
	int  select;
	printf("\n\n请选择数字进行操作\n");
	printf("1.建立库存信息\n");
	printf("2.显示所有信息\n");
	printf("3.购物车\n");
	printf("4.结算\n");
	printf("5.退出\n");
	printf("请选择对应数字1--5");
	while (1)
	{
		fflush(stdin);
		gets(str);
		select = atoi(str);
		if (select < 1 || select>5)
			printf("输入错误,请重新输入:");
		else
			break;

	}
	return select;

}

void dis_all()
{
	int i;
	FILE* fp;
	fp = fopen("goods", "r");
	for (i = 0; (fread(goods + i, sizeof(struct item), 1, fp)) != 0; i++)
	{
		printf("---------------------------------\n");
		printf("货品 品名  单价       库存量\n");
		printf("%s%7s%7.2f%8d\n", goods[i].id, goods[i].brand, goods[i].out_price, goods[i].storage);

	}
	fclose(fp);
}


void shop_cart()
{
	while (1)
	{
		switch (cart_menu())
		{
		case 1:
			display(); break;
		case 2:
			add(); break;
		case 3:
			return;
		}
	}
}
int  cart_menu()
{
	char  str[5];
	int   select;
	printf("\n请选择操作\n");
	printf("-----------------------\n");
	printf("1.显示当前购物列表\n");
	printf("2.添加商品\n");
	printf("3.退出\n");
	printf("-----------------------\n\n");
	while (1)
	{
		fflush(stdin);
		gets(str);
		select = atoi(str);
		if (select < 1 || select>3)
			printf("输入错误,请重新输入:");
		else
			break;
	}
	return select;
}

void display()
{
	struct item_node* p = cart;
	if (p == NULL) {
		printf("购物车为空\n");
		return;
	}
	while (p != NULL) {
		printf("----------------------------------\n");
		printf("货号                品名  单价   数量\n");
		printf("%10s%20s%7.2f%8d\n", p->wanted.id, p->wanted.brand, p->wanted.out_price, p->amount);
		p = p->next;
	}
}

void add()
{
	FILE* fp;
	int   i, n;
	char  str[20];
	char  choice1, choice2;
	struct item_node* p, * p1;
	do
	{
		printf("输入所需物品的名称或货号: ");
		fflush(stdin);
		gets(str);
		if ((fp = fopen("goods", "r")) == NULL) {
			printf("打开文件失败\n");
			continue;
		}
		for (i = 0; fread(goods + i, sizeof(struct item), 1, fp) != 0; i++) {
			if ((strcmp(goods[i].brand, str) == 0 || strcmp(goods[i].id, str) == 0) && goods[i].storage != 0) {
				printf("已经找到所需物品:  \n");
				printf("---------------------\n");
				printf("货号  品名  单价  库存量\n");
				printf("%s%6s%3.2f%4d\n", goods[i].id, goods[i].brand, goods[i].out_price, goods[i].storage);
				printf("请输入所需数量: ");
				scanf("%d", &n);
				if (n > goods[i].storage) {
					printf("库存不足\n");
					break;
				}
				printf("\n是否购买?(Y/N)");
				fflush(stdin);
				choice1 = getchar();
				if (choice1 == 'Y' || choice1 == 'y') {
					p1 = (struct item_node*)malloc(sizeof(struct item_node));
					if (p1 == NULL) {
						printf("内存申请失败!\n");
						exit(1);
					}
					p1->amount = n;
					p1->wanted = goods[i];
					p1->next = NULL;
					p = cart;
					if (cart == NULL)
						cart = p1;
					else {
						while (p->next != NULL)
							p = p->next;
						p1->next = p->next;
						p->next = p1;
					}
				}
				break;
			}
		}
		if (i == NUM)
			printf("未找到所需物品\n");
		fclose(fp);
		printf("是否继续购物?(Y/N)");
		fflush(stdin);
		choice2 = getchar();
	} while (choice2 == 'Y' || choice2 == 'y');
}


void  establish() {
	FILE* fp;
	int   i;
	printf("请依次输入货物信息:\n");
	printf("----------------------------\n");
	for (i = 0; i < NUM; i++)
	{
		printf("品名: ");
		fflush(stdin);
		gets(goods[i].brand);
		printf("货号: ");
		fflush(stdin);
		gets(goods[i].id);
		printf("进价: ");
		fflush(stdin);
		scanf("%f", &goods[i].in_price);
		printf("哨价: ");
		fflush(stdin);
		scanf("%f", &goods[i].out_price);
		printf("数量: ");
		fflush(stdin);
		scanf("%d", &goods[i].storage);
		printf("\n");
	}
	if ((fp = fopen("goods", "w")) == NULL) {
		printf("创建文件失败.\n");
		return;
	}
	fwrite(goods, sizeof(struct item), NUM, fp);
	fclose(fp);
}

void calculate()
{
	float total = 0, pay;
	struct item_node* p;
	int   i;
	FILE* fp;
	printf("以下是购物清单:  \n");
	display();
	if ((fp = fopen("goods", "r")) == NULL) {
		printf("打开文件失败:  \n");
		return;
	}
	for (i = 0; (fread(goods + i, sizeof(struct item), 1, fp)) != 0; i++);
	fclose(fp);
	p = cart;
	while (p != NULL) {
		total += p->wanted.out_price * p->amount;
		for (i = 0; strcmp(goods[i].id, p->wanted.id) != 0; i++);
		goods[i].storage -= p->amount;
		p = p->next;
	}
	printf("总计 %7.2f", total);
	printf("\n输入实付金额: ");
	scanf("%f", &pay);
	printf("实付:         %7.2f    找零:          %7.2f", pay, pay - total);
	if ((fp = fopen("goods", "w")) == NULL) {
		printf("打开文件失败.\n");
		return;
	}
	fwrite(goods, sizeof(struct item), NUM, fp);
	fclose(fp);
}

有需要完整源码的同学可以加一下我的C语言学习群【881577770】找管理员领取哦!后续UP主还会发布更多的项目源码以及学习资料,希望大家可以持续关注,有什么问题可以回帖留言,我尽量回答。想要C/C++学习资料以及其他项目的源码的都可以加群【881577770】了解。想要对程序员的未来发展有兴趣的也可加群闲聊。希望和大家一起学习进步!!!
点击链接进群领取学习资料以及项目源码和素材!icon-default.png?t=M1L8http://点击链接加入群聊【C语言/C++互助学习群②】:https://jq.qq.com/?_wv=1027&k=PQQWg3He

  • 1
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值