- 1、本文档共25页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
作品名称
开发者:
一、系统背景 :
本软件能减轻对货物数目管理及价格盈亏等信息处理的工作量以便能快捷及时准
确的调整货物的仓储量达到最合理化。 可以使店主不失效率的节省大量精力用于其他
方面符合当今社会的商业形式而且本软件体积小操作简单是管理仓库的不二选择
二、系统简介:
设计亮点:
◆三级菜单使操作更简便明了
◆密码操作能有效保证客户信息的安全性
◆独特的 dos命令调用使信息存储的实体属性为隐藏且无扩展名大大增大了安全系数
◆数据结构为链表摆脱了数据数量的限制
◆提供三种查看模式并会标出排名
◆退出店主模式时会提示是否保存若选择
yes着进行保存操作
基本功能:
·在员工模式下可输入卖出货物的名称和数目程序自动在后台进行一系列的操作
·新建数据并同时对其处理
·修改数据
·插入数据
·删除数据
·查找数据
·查看数据
·数据存档
·修改密码
三、系统结构图
#define LEN sizeof(struct shop)
#includestdio。h
# include〈 conio。h
# includestring.h
# include〈 stdlib。h〉
struct shop
{
char name[ 30];
float price_in;
float price_out;
int num_in;
int num_now;
int num_sold;
float win;
float percent;
struct shop* next;
};
int n=0;
void main(void)
{
void auto1( struct shop** h_p);
int menu1(struct shop **h_p);
void print1( void) ;
void assistant(struct shop *head) ;
int password( void);
int menu2(struct shop** h_p);
void print2(void);
void creat( struct shop* *h_p);
void rewrite(struct shop* *h_p);
void insert( struct shop** h_p) ;
void deleat(struct shop ** h_p) ;
void search( struct shop ** h_p);
void printall(struct shop **h_p) ;
void save(struct shop* head) ;
void password_set( void);
int password_exi(struct shop** h_p);
int data_exi(struct shop* *h_p);
void load( struct shop** h_p);
void save( struct shop *head) ;
struct shop *addbuild( struct shop* *h_p);
void sort0( struct shop** h_p);
int search1(struct shop **h_p, char a[30]);
void sort1( struct shop** h_p) ;
void sort2( struct shop** h_p);
void sort3( struct shop **h_p);
void print3(void);
void password_create( void);
struct shop *addbuild( struct shop **h_p);
int a;
struct shop* head,* *h_p;
head=NULL;
h_p=head;
auto1(h_p);
do
{
a=menu1( h_p);
}
while( a!=3);
system(” cls);
printf( 谢谢使用 ^_^” );
getch() ;
}
int menu1( struct shop** h_p)
{
int a,b;
struct shop *head;
head=* h_p;
print1 ()
您可能关注的文档
最近下载
- 热力管网直埋管道施工方案.doc
- 苏教版六年级下册科学第三单元《自然资源》单元试卷及答案.pdf VIP
- 2025年苏教版六年级科学下册第二单元《生物和栖息地》单元试卷(含答案).pdf VIP
- 小学科学苏教版六年级下册期末测试题A(附参考答案)(2022新版).pdf VIP
- 萌宠学 见面课试题及答案.docx VIP
- 苏教版六年级科学下册单元测试卷及答案(全册).pdf VIP
- 新苏教版六年级上册科学全册知识点总结.doc
- 全国自考《学前儿童游戏指导》全真模拟题(八).doc VIP
- 认知战研究的多学科视角分析.pptx VIP
- 全国自考《学前儿童游戏指导》全真模拟题(七).doc VIP
文档评论(0)