服务器之家

服务器之家 > 正文

C语言超市管理系统设计

时间:2021-06-21 14:06     来源/作者:C语言教程网

本文实例为大家分享了C语言超市管理系统设计的具体代码,供大家参考,具体内容如下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define NUM 5
 
struct item{
 char brand[20];
 char id[10];
 float in_price;
 float out_price;
 int storage;
};
struct item_node{
 struct item wanted;
 int amount;
 struct item_node *next;
};
 
int menu();
void establish();
void dis_all();
void shop_cart();
int cart_menu();
void add();
void display();
void calculate();
 
struct item goods[NUM];
struct item_node *cart;
 
 
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);
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
2021德云社封箱演出完整版 2021年德云社封箱演出在线看
2021德云社封箱演出完整版 2021年德云社封箱演出在线看 2021-03-15
返回顶部