欢迎来到天天文库
浏览记录
ID:47073543
大小:146.04 KB
页数:24页
时间:2019-07-16
《仓库管理系统c语言》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、实用文档作品名称开发者:一、系统背景:本软件能减轻对货物数目管理及价格盈亏等信息处理的工作量以便能快捷及时准确的调整货物的仓储量达到最合理化。可以使店主不失效率的节省大量精力用于其他方面符合当今社会的商业形式而且本软件体积小操作简单是管理仓库的不二选择二、系统简介:设计亮点:◆三级菜单使操作更简便明了◆密码操作能有效保证客户信息的安全性◆独特的dos命令调用使信息存储的实体属性为隐藏且无扩展名大大增大了安全系数◆数据结构为链表摆脱了数据数量的限制◆提供三种查看模式并会标出排名◆退出店主模式时会提示是否保存若选择yes着进行保存操作基本功能:·
2、在员工模式下可输入卖出货物的名称和数目程序自动在后台进行一系列的操作·新建数据并同时对其处理·修改数据·插入数据·删除数据·查找数据·查看数据·数据存档·修改密码三、系统结构图文案大全实用文档#defineLENsizeof(structshop)#include#include#include#includestructshop{charname[30];floatprice_in;floatprice_out;intnum_in;intnum_now;intnum
3、_sold;floatwin;floatpercent;structshop*next;};intn=0;voidmain(void){voidauto1(structshop**h_p);intmenu1(structshop**h_p);voidprint1(void);voidassistant(structshop*head);intpassword(void);intmenu2(structshop**h_p);voidprint2(void);voidcreat(structshop**h_p);voidrewrite(struc
4、tshop**h_p);voidinsert(structshop**h_p);voiddeleat(structshop**h_p);voidsearch(structshop**h_p);voidprintall(structshop**h_p);voidsave(structshop*head);voidpassword_set(void);intpassword_exi(structshop**h_p);intdata_exi(structshop**h_p);voidload(structshop**h_p);voidsave(st
5、ructshop*head);structshop*addbuild(structshop**h_p);voidsort0(structshop**h_p);文案大全实用文档intsearch1(structshop**h_p,chara[30]);voidsort1(structshop**h_p);voidsort2(structshop**h_p);voidsort3(structshop**h_p);voidprint3(void);voidpassword_create(void);structshop*addbuild(struc
6、tshop**h_p);inta;structshop*head,**h_p;head=NULL;h_p=&head;auto1(h_p);do{a=menu1(h_p);}while(a!=3);system("cls");printf("谢谢使用^_^");getch();}intmenu1(structshop**h_p){inta,b;structshop*head;head=*h_p;print1();scanf("%d",&a);putchar('');getchar();do{switch(a){case1:assistan
7、t(head);break;case2:if(password())do{b=menu2(h_p);}while(b!=9);break;文案大全实用文档default:break;}if(a!=3){system("cls");print1();scanf("%d",&a);}}while(a!=3);return(a);}intmenu2(structshop**h_p){intb;chara;structshop*head;head=*h_p;print2();scanf("%d",&b);putchar('');getchar()
8、;do{switch(b){case1:creat(h_p);break;case2:rewrite(h_p);break;case3:insert(h_p);br
此文档下载收益归作者所有