-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChaoShi.c
2172 lines (2132 loc) · 68.5 KB
/
ChaoShi.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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include"ChaoShi.h"
void interface1(void)//定义进入界面时第一个函数
{
float y, x, z, f;
for (y = 1.5f; y > -1.5f; y-=0.1f)
{
for (x = -1.5f; x < 1.5f; x += 0.05f)
{
z = x*x + y*y -1;
f = z*z*z - x*x*y*y*y;
putchar(f <= 0.0f ? "*********"[(int)(f*-8.0f)]:' ');
}
putchar('\n');
}
printf("欢迎使用小型超市商品管理系统(请按Enter键进入.......)");
getchar();
system("cls");
}
void interface2(void)//定义进入界面时第二个函数
{
int i;
char ch='*';
for(i=1;i<20;i++)
{
putchar(ch);
}
printf("小型超市商品管理系统");
for(i=1;i<20;i++)
{
putchar(ch);
}
}
void set_account(void)//初始化账号密码
{
int a;
struct Account account_neu;
struct Account nnnn;
//scanf("%ld",&nnnn.ID_g);
//struct Account account_cse;
struct FILF *fp;
if((fp=fopen("account.dat","wb+"))==NULL)//打开磁盘文件
{
printf("系统出错!!!!!!!!!\n");
exit(0);//结束函数
}
printf("请输入初始化的账号密码\n");
printf("初始化收银员账号:");
scanf("%ld",&account_neu.ID_s);
printf("初始化收银员密码:");
scanf("%ld",&account_neu.password_s);
printf("初始化管理员账号:");
scanf("%ld",&account_neu.ID_g);
printf("初始化管理员密码:");
scanf("%ld",&account_neu.password_g);
//printf("%ld %ld %ld %ld\n",account_neu.ID_s,account_neu.password_s,account_neu.ID_g,account_neu.password_g);
fwrite(&account_neu,sizeof(account_neu),1,fp);//将账号密码读入文件
rewind(fp);
//fread(&account_cse,sizeof(account_cse),1,fp);
//printf("%ld %ld %ld %ld\n",account_cse.ID_s,account_cse.password_s,account_cse.ID_g,account_cse.password_g);
printf("账号密码设置完成");
printf("再次输入账号密码登录\n");
printf("如果是管理者请输入1,如果是收银员请输入2:\n");
scanf("%d",&a);
log_in_s(a);//收银员的登录界面
log_in_g(a);//管理者的登录界面
}
void log_in_s(int x)//收银员登陆界面
{
if(x==2)
{
struct Account* account1;
account1=read_account();
struct Account account_t;
account_t.ID_s=account1->ID_s;
account_t.password_s=account1->password_s;
account_t.ID_g=account1->ID_g;
account_t.password_g=account1->password_g;
//printf("%ld %ld %ld %ld\n",account_t.ID_s,account_t.password_s,account_t.ID_g,account_t.password_g);
long int ID,password;
printf("你好收银员,请输入你的账号,密码\n");
printf("账号:");
scanf("%ld",&ID);
printf("\n");
printf("密码:");
scanf("%ld",&password);
printf("\n");
if((ID==account_t.ID_s)&&(password==account_t.password_s))
{
system("cls");
printf("登录成功\n欢迎进入美好的收银时间\n");
selled();
}
else
{
printf("账号密码错误,系统自动退出\n");
exit(0);
}
}
}
struct Account* read_account(void)//读出账号密码
{
struct FILF *fp;
struct Account account_cse;
struct Account *pp;
pp=&account_cse;
if((fp=fopen("account.dat","ab+"))==NULL)//打开磁盘文件
{
printf("系统出错!!!!!!!!!\n");
return 0;//结束函数
}
fread(pp,sizeof(account_cse),1,fp);
//printf("%ld %ld %ld %ld\n",account_cse.ID_s,account_cse.password_s,account_cse.ID_g,account_cse.password_g);
return pp;
}
void log_in_g(int x)//管理员登陆界面
{
if(x==1)
{
struct Account* account1;
account1=read_account();
struct Account account_t;
account_t.ID_s=account1->ID_s;
account_t.password_s=account1->password_s;
account_t.ID_g=account1->ID_g;
account_t.password_g=account1->password_g;
// printf("%ld %ld %ld %ld\n",account_t.ID_s,account_t.password_s,account_t.ID_g,account_t.password_g);
long int ID,password;
printf("你好管理员,请输入你的账号,密码\n");
printf("账号:");
scanf("%ld",&ID);
printf("\n");
printf("密码:");
scanf("%ld",&password);
printf("\n");
//printf("%ld %ld %ld %ld\n",account1->ID_s,account1->password_s,account1->ID_g,account1->password_g);
if((ID==account_t.ID_g)&&(password==account_t.password_g))
{
printf("登录成功\n");
user();
}
else printf("账号密码输入错误,系统自动退出\n");
exit(0);
//user();
}
system("cls");
}
void user(void)
{
int choice;
printf(" \n\n \n\n");
printf(" ******************************************************\n\n");
printf(" * 管理系统 *\n \n");
printf(" ******************************************************\n\n");
printf("*********************系统功能菜单*********************** \n");
printf(" ----------------------- --------------------- \n");
printf(" ********************************************** \n");
printf(" * 0.退出该系统 * * 1.修改登录账号密码 * \n");
printf(" ********************************************** \n");
printf(" * 2.顾客管理系统 * * 3.商品管理系统 * \n");
printf(" ********************************************** \n");
printf(" * 4.查询畅销商品 * \n");
printf(" ********************************************** \n");
//printf(" * 6. * * 7. * \n");
//printf(" ********************************************** \n");
printf(" ----------------------- --------------------- \n");
printf("******************************************************** \n");
//printf("请选择菜单编号:");
//scanf("%d",&choice);
while(1)
{
printf("请选择要使用功能:");
scanf("%d",&choice);
if((((choice==0||choice==1)||choice==2)||choice==3)||choice==4)break;
else printf("输入错误,请按照规则重新输入\n");
}
system("cls");
switch(choice)
{
case 1:
change_account();
//system("cls");
break;
case 2:
showorchange_customer();
break;
case 3:
goods_message();
//system("cls");
break;
case 4:
search_selled();
break;
case 0:
return 0;
break;
default:
printf("输入有误,没有该功能\n");
break;
}
//system("cls");
}
void change_account(void)
{
struct FILF *fp;
struct Account account_neucse;
if((fp=fopen("account.dat","ab"))==NULL)//打开磁盘文件
{
printf("系统出错!!!!!!!!!\n");
return 0;//结束函数
}
printf("请输入修改后的账号密码\n");
printf("修改后收银员账号:");
scanf("%ld",&account_neucse.ID_s);
printf("修改后收银员密码:");
scanf("%ld",&account_neucse.password_s);
printf("修改后管理员账号:");
scanf("%ld",&account_neucse.ID_g);
printf("修改后管理员密码:");
scanf("%ld",&account_neucse.password_g);
fwrite(&account_neucse,sizeof(account_neucse),1,fp);//将账号密码读入文件
printf("账号密码修改完成\n");
int a;
printf(" ******************************************************\n");
printf(" * 如果继续使用该系统请输入1 *\n");
printf(" ******************************************************\n");
printf(" * 如果想退出该系统请输入2 *\n");
printf(" ******************************************************\n");
printf(" 请选择要是用的功能:\n");
scanf("%d",&a);
if(a==1)user();
else if(a==2) exit(0);
}
void showorchange_customer(void)
{
/*void save_Customer(void);//第一次录入顾客信息1
void add_customer(void);//添加顾客信息1
void revise(void);//修改顾客信息1
void del(void);//删除顾客数据1
struct Customer_list *look_customer(void);//查看顾客信息,将顾客信息建成链表输出表头1
void show_customer(void);//展示顾客信息1*/
int a;
printf(" \n\n \n\n");
printf(" ******************************************************\n\n");
printf(" * 顾客管理系统 *\n \n");
printf(" ******************************************************\n\n");
printf("*********************系统功能菜单*********************** \n");
printf(" ----------------------- --------------------- \n");
printf(" ********************************************** \n");
printf(" * 0.返回上一级 * * 1. 使用帮助 * \n");
printf(" ********************************************** \n");
printf(" * 2.录入顾客信息 * * 3.添加顾客信息 * \n");
printf(" ********************************************** \n");
printf(" * 4.修改顾客信息 * * 5.删除顾客信息 * \n");
printf(" ********************************************** \n");
printf(" * 6.显示顾客信息 * * 7.查询顾客信息 * \n");
printf(" ********************************************** \n");
printf(" * 8.模糊查询姓名 * * ------------------- \n");
printf("******************************************************** \n");
//查询顾客信息,帮助
printf("请选择菜单编号:");
scanf("%d",&a);
printf("\n");
system("cls");
switch(a)
{
case 1:
{
int ss;
printf("1.请按照提示使用该功能\n 2.如有疑问请拨打咨询热线15294748920\n 3.谢谢您对该系统的支持\n\n\n\n\n");
printf("如果返回上一级请输入1\n如果直接退出系统请输入2\n");
printf("请选择功能:");
scanf("%d",&ss);
system("cls");
if(ss==1)showorchange_customer();
else if(ss==2)exit(0);
}
break;
case 2:
save_Customer();
break;
case 3:
add_customer();
break;
case 4:
revise1();
break;
case 5:
del1();
break;
case 6:
show_customer();
break;
case 7:
search_customer_message();
break;
case 0:
user();
break;
case 8:
search_customer_mohu();
break;
default:
printf("输入有误,没有该功能\n");
int a;
printf("如果想继续使用本系统请输入1");
scanf("%d",&a);
if(a==1)showorchange_customer();
//user();
break;
}
//system("cls");
}
void search_customer_message(void)
{
struct Customer_list *head_cust,*p;
int i,temp,num_cust,a,grade,ss,nn=0;//temp为要搜索顾客数目,num_cust为要搜索的顾客标号
char name_cust[20];//要搜索顾客姓名
head_cust=look_customer();
p=NULL;
printf("请选择搜索方式(按姓名搜索或按顾客编号搜索");
printf("按姓名搜索请输入1,按顾客编号搜索请输入2):");
scanf("%d",&a);
printf("请输入要搜索次数:");
scanf("%d",&temp);
if(a==1)
{
for(i=0;i<temp;i++)
{
printf("请输入要搜索顾客姓名:");
scanf("%s",name_cust);
if(head_cust!=NULL)
{
p=head_cust;
do
{
if(strcmp(name_cust,p->god.name)== 0)
{
nn++;
printf("|顾客编号|顾客姓名|顾客消费等级|顾客销售额|\n");
if(p->god.sale_amount<100)
{
grade=0;
}
else if((p->god.sale_amount>=100)&&(p->god.sale_amount<1000))
{
grade=1;
}
else if((p->god.sale_amount>=1000)&&(p->god.sale_amount<2000))
{
grade=2;
}
else grade=3;
printf("|%8d|%8s|%12d|%10ld|\n",p->god.number,p->god.name,grade,p->god.sale_amount);
}
p=p->next;
}
while(p!=NULL);
}
}
}
else if(a==2)
{
for(i=0;i<temp;i++)
{
printf("请输入要搜索顾客编号:");
scanf("%d",&num_cust);
if(head_cust!=NULL)
{
p=head_cust;
do
{
if(p->god.number==num_cust)
{
nn++;
printf("|顾客编号|顾客姓名|顾客消费等级|顾客销售额|\n");
if(p->god.sale_amount<100)
{
grade=0;
}
else if((p->god.sale_amount>=100)&&(p->god.sale_amount<1000))
{
grade=1;
}
else if((p->god.sale_amount>=1000)&&(p->god.sale_amount<2000))
{
grade=2;
}
else grade=3;
printf("|%8d|%8s|%12d|%10ld|\n",p->god.number,p->god.name,grade,p->god.sale_amount);
}
p=p->next;
}
while(p!=NULL);
}
}
}
else printf("未按规定输入\n");
if(nn==0)printf("未查询到所输入的顾客\n\n\n");
printf("如果返回上一级请输入1\n如果直接退出系统请输入2\n");
printf("请选择功能:");
scanf("%d",&ss);
system("cls");
if(ss==1)showorchange_customer();
else if(ss==2)exit(0);
}
void search_customer_mohu() {
struct Customer_list* head_cust, * p;
int i, temp, a, grade,tmp, ss, nn = 0;//temp为要搜索顾客数目,num_cust为要搜索的顾客标号
char name_cust[20];//要搜索顾客姓名
char shortname[20];
head_cust = look_customer();
printf("请输入要搜索人数:");
scanf("%d", &temp);
for (i = 0; i < temp; i++)
{
printf("请输入要搜索顾客姓名:");
scanf("%s", name_cust);
int n = strlen(name_cust);
if (head_cust != NULL)
{
p = head_cust;
int m = strlen(p->god.name);
for (int item = 0; item <= m - n;item+=2) {
tmp = 0;
for (int t = item; t < item + n; t++) {
shortname[tmp] = p->god.name[t];
tmp += 1;
}
shortname[tmp] = '\0';
if (strcmp(name_cust, shortname) == 0)
{
printf("1");
printf("|顾客编号|顾客姓名|顾客消费等级|顾客销售额|\n");
if (p->god.sale_amount < 100)
{
grade = 0;
}
else if ((p->god.sale_amount >= 100) && (p->god.sale_amount < 1000))
{
grade = 1;
}
else if ((p->god.sale_amount >= 1000) && (p->god.sale_amount < 2000))
{
grade = 2;
}
else grade = 3;
printf("|%8d|%8s|%12d|%10ld|\n", p->god.number, p->god.name, grade, p->god.sale_amount);
break;
}
}
p = p->next;
}
}
}
void save_Customer(void)//用户第一次进行数据录入
{
//该程序为第一次录入顾客信息时所使用的函数
struct FILF *fp;//建立文件指针
struct Customer cust[100];//建立顾客信息结构体数组,将信息读入文件之后在读出到数组进行排序
//Customer cust1[5];
int i,num_cust,ss;//后者为顾客数目
printf("请输入要录入的顾客数目:");
scanf("%d",&num_cust);//读入顾客数目
printf("请输入要录入的顾客信息(请按照顾客编号,姓名,销售额进行输入,编号如1001,1002):");
printf("\n");
for(i=0;i<num_cust;i++)//建立循环
{
scanf("%d%s%ld",&cust[i].number,cust[i].name,&cust[i].sale_amount);//录入顾客信息
}
//将信息导入文件
if((fp=fopen("customer_information.dat","ab"))==NULL)//打开磁盘文件
{
printf("系统出错!!!!!!!!!\n");
return 0;//结束函数
}
for(i=0;i<num_cust;i++)
{
fwrite(&cust[i],sizeof(cust[i]),1,fp);//向文件中读入数据
}
memset(cust,0,sizeof(cust));//将cust数组中的数据清空,再次利用
fclose(fp);
printf("录入成功\n");
printf("****************************************************** \n");
printf("*如果返回上一级请输入1 * \n");
printf("****************************************************** \n");
printf("*如果直接退出系统请输入2 * \n");
printf("****************************************************** \n");
while(1)
{
printf("请选择要使用功能:");
scanf("%d",&ss);
if(ss==1||ss==2)break;
else printf("输入错误,请按照规则重新输入\n");
}
if(ss==1)showorchange_customer();
else if(ss==2) exit(0);
}
void add_customer()//在文件中添加数据
{
struct FILF *fp;
struct Customer cust[50];
int i,num,ss;
printf("请输入要添加的顾客数目:");
scanf("%d",&num);//读入顾客数目
printf("请输入要添加的顾客信息(请按照顾客编号,姓名,销售额进行输入,编号如1001,1002):");
printf("\n");
for(i=0;i<num;i++)//建立循环
{
scanf("%d%s%ld",&cust[i].number,cust[i].name,&cust[i].sale_amount);//录入顾客信息
}
if((fp=fopen("customer_information.dat","ab"))==NULL)//打开磁盘文件
{
printf("系统出错!!!!!!!!!\n");
return 0;//结束函数
}
for(i=0;i<num;i++)
{
fwrite(&cust[i],sizeof(cust[i]),1,fp);//向文件中读入数据
}
memset(cust,0,sizeof(cust));//将cust数组中的数据清空,再次利用
fclose(fp);
printf("添加成功\n");
printf("****************************************************** \n");
printf("*如果返回上一级请输入1 * \n");
printf("****************************************************** \n");
printf("*如果直接退出系统请输入2 * \n");
printf("****************************************************** \n");
while(1)
{
printf("请选择要使用功能:");
scanf("%d",&ss);
if(ss==1||ss==2)break;
else printf("输入错误,请按照规则重新输入\n");
}
if(ss==1)showorchange_customer();
else if(ss==2) exit(0);
}
void revise1()//修改用户信息
{
FILE* fp;
int ss;
//char name[20];
int num_cha;
struct Customer cust_t;
fp = fopen("customer_information.dat","rb+");
printf("请输入您要修改的用户的编号:\n");
scanf("%d",&num_cha);
//printf("11111");
while(fread(&cust_t,sizeof(cust_t),1,fp) != 0)
{
//printf("11111");
if(cust_t.number==num_cha){
fseek(fp,0-sizeof(cust_t),SEEK_CUR);
printf("请输入修改后的顾客信息(请按照顾客编号,姓名,销售额进行输入,编号如1001,1002):");//增添
scanf("%d%s%ld",&cust_t.number,cust_t.name,&cust_t.sale_amount);//输入给
fwrite(&cust_t,sizeof(cust_t),1,fp);
break;
}
}
fclose(fp);
printf("****************************************************** \n");
printf("*如果返回上一级请输入1 * \n");
printf("****************************************************** \n");
printf("*如果直接退出系统请输入2 * \n");
printf("****************************************************** \n");
while(1)
{
printf("请选择要使用功能:");
scanf("%d",&ss);
if(ss==1||ss==2)break;
else printf("输入错误,请按照规则重新输入\n");
}
if(ss==1)showorchange_customer();
else if(ss==2) exit(0);
}
void del1(void)//删除用户数据
{
FILE *fp,*fq;
int ss;
fp = fopen("customer_information.dat","rb");
fq = fopen("data.dat", "wb");
char name[20];
struct Customer cust_t;
printf("请输入要删除顾客的名称\n");
scanf("%s", name);
while(fread(&cust_t,sizeof(cust_t),1,fp) != 0)
{
if(strcmp(cust_t.name,name) != 0){
fwrite(&cust_t, sizeof(cust_t), 1, fq);
}
}
fclose(fp);
fclose(fq);
remove("customer_information.dat");
rename("data.dat", "customer_information.dat");
printf("顾客信息删除完成\n");
printf("****************************************************** \n");
printf("*如果返回上一级请输入1 * \n");
printf("****************************************************** \n");
printf("*如果直接退出系统请输入2 * \n");
printf("****************************************************** \n");
while(1)
{
printf("请选择要使用功能:");
scanf("%d",&ss);
if(ss==1||ss==2)break;
else printf("输入错误,请按照规则重新输入\n");
}
if(ss==1)showorchange_customer();
else if(ss==2) exit(0);
}
void show_customer(void)
{
struct Customer_list *look,*p;
int ss;
look=NULL;
look=look_customer();
int grade=0;
p=NULL;
if(look!=NULL)
{
p=look;
printf("|顾客编号|顾客姓名|顾客消费等级|顾客销售额|\n");
do
{
if(p->god.sale_amount<100)
{
grade=0;
}
else if((p->god.sale_amount>=100)&&(p->god.sale_amount<1000))
{
grade=1;
}
else if((p->god.sale_amount>=1000)&&(p->god.sale_amount<2000))
{
grade=2;
}
else grade=3;
printf("|%8d|%8s|%12d|%10ld|\n",p->god.number,p->god.name,grade,p->god.sale_amount);
p=p->next;
}
while(p!=NULL);
}
printf("****************************************************** \n");
printf("*如果返回上一级请输入1 * \n");
printf("****************************************************** \n");
printf("*如果直接退出系统请输入2 * \n");
printf("****************************************************** \n");
while(1)
{
printf("请选择要使用功能:");
scanf("%d",&ss);
if(ss==1||ss==2)break;
else printf("输入错误,请按照规则重新输入\n");
}
if(ss==1)showorchange_customer();
else if(ss==2) exit(0);
}
struct Customer_list *look_customer()//查看用户信息,将用户信息建成链表输出表头
{
struct FILF *fp;//建立文件指针
struct Customer cust[50];//建立顾客信息结构体数组,将信息读入文件之后在读出到数组进行排序
//Customer cust1[5];
struct Customer_list *head;//链表头指针
struct Customer_list *p1,*p2;//建立链表中的过程指针
struct Customer cust_t;
int temp,i,k;
if((fp=fopen("customer_information.dat","rb"))==NULL)//打开文件,将数据读入结构体数组
{
printf("系统出错!!!!!!!!!\n");
return 0;
}
i=0;//将i赋值
while(fread(&cust[i],sizeof(cust[i]),1,fp)==1)i++;//将数据读入结构体数组
temp=i;
fclose(fp);
for(i=0;i<temp;i++)
{
for(k=1;k<temp-i;k++)
{
if(cust[k].sale_amount<cust[k-1].sale_amount)
{
cust_t=cust[k];
cust[k]=cust[k-1];
cust[k-1]=cust_t;
}
}
}
i=0;//将i重新赋值为0
k=0;
head=NULL;
p1=p2=(struct Customer_list *)malloc(sizeof(struct Customer_list));//建立链表并将数据传入链表
p1->god=cust[k];
for(i=0;i<temp;i++)
{
k++;
if(k==1)head=p1;
else p2->next=p1;
p2=p1;
p1=(struct Customer_list *)malloc(sizeof(struct Customer_list));
p1->god=cust[k];
}
p2->next=NULL;//链表建立完成
memset(cust,0,sizeof(cust));//将cust数组中的数据清空,再次利用
//p=head;//检测链表是否正确
/*if(head!=NULL)
{
do
{
printf("%d,%s,%ld\n",p->god.number,p->god.name,p->god.sale_amount);
p=p->next;
}
while(p!=NULL);
}*/
/*for(i=0;i<2;i++)
{
printf("%d,%s,%d,%ld\n",cust[i].number,cust[i].name,cust[i].sale_amount);
}*/
return head;
}
void goods_message()
{
int num, nu;
struct comm_buy* w;
pr();
while(scanf("%d", &num) != EOF)
{
if(num == 0||num == 1||num == 2||num == 3||num ==4||num ==5||num == 6|| num == 7)
break;
else printf("请输入0~7\n");
}
switch (num)
{
case 0:help();back();break;
case 1: printf(" ********************************************* \n");
printf(" * 1.请录入商品信息 2.进货 * \n");//note
printf(" ********************************************* \n");
while(scanf("%d", &nu) != EOF)
{
if(nu == 1 || nu == 2)
break;
else printf("请输入1或2\n");
}
switch(nu)
{
case 1:
w = creat();
save(w);
break;
case 2: w = buy();sav(w);back();break;
}break;
case 2:revise();back();break;
case 3: del();back();break;
case 4: cu();back(); break;
case 5: google();back();break;
case 6:printf(" ****************************************************** \n");
printf(" * 1.按序号排序 2.按售价升序排序 3.按售价降序排序 * \n");//note
printf(" ****************************************************** \n");
while(scanf("%d", &nu) != EOF)
{
if(nu == 1 || nu == 2 ||nu == 3)//system("cls");
break;
else printf("请输入1~3\n");
}
switch(nu)
{
case 1: order_num();back();break;
case 2: order_sell1();back();break;
case 3: order_sell2();back();break;
}
break;
case 7:
system("cls");
user();
break;
}
}
struct sale* sp()
{
struct sale* head=NULL;
struct sale* p1, * p2;
int n = 0, a, d;
long long t;
double b;
char c[20];
p1 = p2 = (struct sale* ) malloc(sizeof(struct sale));
printf("请输入促销商品的序号、名称、售价、数量、上架时间: \n");
while(scanf("%d %s %lf %d %lld", &a, c, &b,&d,&t) != EOF)
{
if(a < 0 || b < 0)
{
printf("输入格式不对请重新输入\n");
}
else
{
break;
}
}
p1->num = a;
strcpy(p1->name, c);
p1->sell = b;
p1->amount = d;
p1->time = t;
while(p1->num != 0)//循环录入
{
n = n+1;
if(n == 1) head = p1;
else p2->next = p1;
p2 = p1;
p1 = (struct sale*)malloc(sizeof(struct sale));
printf("请继续录入商品信息或以0 0 0结束\n");
while(scanf("%d %s %lf %d %lld", &a, c, &b, &d, &t) != EOF)//输入检查
{
if(a < 0 || b < 0)
{
printf("输入格式不对请重新输入\n");
}
else
{
break;
}
}
p1->num = a;
strcpy(p1->name, c);
p1->sell = b;
p1->amount = d;
p1->time = t;
if(p1->num == 0) printf("促销商品录入结束\n");
else printf("促销商品录入成功!");
}
p2 ->next = NULL;
return head;
}
//储存至文件(促销)
void sale(struct sale* m)//链表头指针作实参,内存中链表信息以二进制储存进"databa.dat"
{
FILE* fp;
if((fp = fopen("sale.dat","ab"))== NULL)//日后改为ab
{
printf("ERROR!\n");
return;
}
while(m != NULL)
{
fwrite(m,sizeof(struct sale),1,fp);
m = m->next;
}
fclose(fp);
fp = NULL;
}
/*商品进货信息*/
struct messages_buy* buy(void)//返回链表头指针
{
FILE* fp;
fp = fopen("databa.dat", "rb+");
struct comm_buy comm;
struct messages_buy* head;
struct messages_buy* p1, * p2;
int n = 0;
int a, b, x;
long long c;
char y[15];
p1 = p2 = (struct messages_buy*) malloc(lon);
printf("请输入商品的序号、名称、进货价格、数量、进货时间(如202102011400,为2021年2月1日下午2时)\n");
while(scanf("%d %s %d %d %lld", &x, y,&a, &b, &c) != EOF)//录入检查
{
if(a < 0 || b < 0||c<0)
{
printf("输入格式不对请重新输入\n");
}
else {
break;
}
}
while(fread(&comm,LEN,1,fp) != 0)
{
if(strcmp(comm.name, y) == 0)
{
comm.amount = comm.amount + b;
comm.time = c;
fseek(fp, 0-LEN, SEEK_CUR);
// kk++;
fwrite(&comm,LEN,1,fp);
break;
}
}
// printf("%d",kk);
p1->num = x;
strcpy(p1->name, y);
p1->amount = b;
p1->price = a;
p1->time = c;
printf("进货信息录入成功!\n");
head = NULL;
while(p1->amount != 0)//继续录入
{
printf("请输入商品的序号、名称、进货价格、数量、进货时间或以0 0 0 0 0结束\n");
n = n+1;
if(n == 1)
head = p1;
else p2->next = p1;
p2 = p1;
p1 = (struct messages_buy*) malloc(lon);
while(scanf("%d %s %d %d %d", &x, y,&a, &b, &c) != EOF)//录入检查
{
if(a < 0 || b < 0)
{
printf("输入格式不对请重新输入\n");
}
else
{
while(fread(&comm,LEN,1,fp) != 0)
{
if(strcmp(comm.name, y) == 0)
{
comm.amount = comm.amount + b;
comm.time = c;
fseek(fp, 0-LEN, SEEK_CUR);
fwrite(&comm,LEN,1,fp);
break;
}
}
p1->num = x;
strcpy(p1->name, y);
p1->amount = b;
p1->price = a;
p1->time = c;
if(p1->amount == 0) printf("进货信息录入结束\n");
else printf("进货信息录入成功!");
break;
}
}
}
p2->next = NULL;
fclose(fp);
return head;
};
//储存至文件(进货)
void sav(struct messages_buy* m)//链表头指针作实参,内存中链表信息以二进制储存进"databa.dat"
{
FILE* fp;
if((fp = fopen("database.dat","wb"))== NULL)//日后改为ab
{
printf("ERROR!\n");
return;
}
while(m != NULL)
{
fwrite(m,sizeof(struct messages_buy),1,fp);
m = m->next;
}
fclose(fp);
fp = NULL;
}
//录入商品信息
struct comm_buy* creat(void)//返回链表头指针
{
struct comm_buy* head=NULL;
struct comm_buy* p1, * p2;
int n = 0, a,am;
long long t;
double b;
char c[20];
p1 = p2 = (struct comm_buy* ) malloc(sizeof(struct comm_buy));
printf("请输入商品的序号、名称、售价、数量、进货时间(如202203061518): \n");
while(scanf("%d %s %lf %d %lld", &a, c, &b,&am,&t) != EOF)
{
if(a < 0 || b < 0||am<0||t<0)
{
printf("输入格式不对请重新输入\n");
}
else
{
break;
}
}
p1->num = a;
strcpy(p1->name, c);
p1->sell = b;
p1->amount = am;
p1->time = t;
while(p1->num != 0)//循环录入