欢迎来到天天文库
浏览记录
ID:47427247
大小:111.00 KB
页数:14页
时间:2020-01-10
《C语言版商品库存管理系统》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、建议使用VS打开运行#pragmaonce#includetypedefstructinformation//商品信息{charnumber[20];//编号charsname[20];//名称floatprice;//价格intcount;//数量chardath[20];//生产日期structinformation*next;}inf;voidmenu(inf*head);//显示主菜单inf*create();//创建链表voidInput(inf*head);//输入商品信息voidtianjia(inf*head);//添加商品信息
2、voidoutput(inf*head);//输出商品信息voidchaxun(inf*head);//查询商品信息voidchaxun_number(inf*head);//按编号查询voidchaxun_sname(inf*head);//按名称查询voidxiugai(inf*head);//修改商品信息voidshanchu(inf*head);//删除商品信息voidwrite_file(inf*head);//保存商品信息到文件voidpaixu(inf*head);inf*Read__file();//读取文件内商品信息voidfreeh(inf*
3、head);//退出程序#define_CRT_SECURE_NO_WARNINGS#include#include#include#include#include#include#pragmacomment(lib,"WINMM.lib")#include"标头.h"voidmenu(inf*head)//显示菜单{PlaySound(TEXT("sounds\背景.wav"),NULL,SND_FILENAME
4、SND_ASYNC
5、S
6、ND_LOOP);system("color3B");printf("tt*****************************************************");printf("tttt欢迎进入商品库存管理系统");printf("tt*****************************************************");printf("");printf("tt
7、====================================================
8、");
9、printf("tt
10、______________________基本信息______________________
11、");printf("tt
12、1.商品信息录入
13、2.添加商品信息
14、");printf("tt
15、3.查找商品信息
16、4.修改商品信息
17、");printf("tt
18、5.删除商品信息
19、6.保存文件信息
20、");printf("tt
21、7.读取文件信息
22、8.显示商品信息
23、");printf("tt
24、9.按价格从高到低进行排序
25、");printf("tt
26、_________________0.释放链表。退出__
27、_________________
28、");printf("ttt请输入你的选项(0---8):");printf("");printf("t请输入你的选择:");}inf*create()//创建链表{inf*p;p=(inf*)malloc(sizeof(structinformation));if(p==NULL){printf("链表创建失败.");exit(0);}p->next=NULL;return(p);}voidInput(inf*head)//录入货物信息{inf*p;inti,n;printf("请输入:你想录入多
29、少个商品信息:");scanf("%d",&n);for(i=1;i<=n;i++){p=(inf*)malloc(sizeof(structinformation));if(p==NULL){printf("结点创建失败.");exit(0);}printf("请输入商品:编号,名称,价格,数量:生产日期");printf("编号:");scanf("%s",p->number);printf("名称:");scanf("%s",p->sname);printf("价格:");scanf("%f",&p->price);printf("数量:");
30、scanf("%d",&
此文档下载收益归作者所有