资源简介

1、作品题目:《仓库管理系统》 2、主要功能: a、用户注册登陆功能; b、商品入库(输入详细信息); c、商品出库(可按商品编码、商品名称出库。并可通过出库数量判断库存情况); d、商品一览(可分总览、编号和名称三种方式输出商品详细情况); e、退出。

资源截图

代码片段和文件信息

#include 
#include
#include “deal_file.h“
void close_file(void) //关闭文件
{
    fclose(global.pfile);
    global.pfile=NULL;

}
void open_file(char *mode)//打开文件
{
    if(global.pfile)
        close_file();
    if(fopen_s(&global.pfileglobal.filenamemode))
    {
        printf(“不能通过%s打开%s“modeglobal.filename);
        exit(1);

    }
    setvbuf(global.pfileNULL _IOFBFBUFSIZ);

}
void laid_up(void)  //商品入库
{
    printf(“\n\n==============================================================================\n“);
    printf(“—————————————————商品入库——————————————————\n“);
    printf(“==============================================================================\n请输入商品信息:\n“);
    open_file(“ab“);
    printf(“商品编码:\n“);
    scanf(“%d“&info.NUM_thing

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件      128255  2015-06-18 09:27  C程序作品说明书.docx
     目录           0  2015-06-18 12:32  the_storage_system\
     文件       11208  2015-06-16 20:34  the_storage_system\deal_file.c
     文件         566  2015-06-16 16:55  the_storage_system\deal_file.h
     文件        7008  2015-06-13 10:21  the_storage_system\deployment.pri
     文件         961  2015-06-14 22:20  the_storage_system\laid_out.c
     文件        3001  2015-06-16 17:03  the_storage_system\login.c
     文件         287  2015-06-16 16:58  the_storage_system\login.h
     文件        1105  2015-06-16 14:17  the_storage_system\look_up.c
     文件          82  2015-06-16 17:03  the_storage_system\main.c
     文件          54  2015-06-14 00:14  the_storage_system\main.h
     文件        1207  2015-06-16 17:03  the_storage_system\menu.c
     文件          76  2015-06-13 23:49  the_storage_system\menu.h
     文件         285  2015-06-14 22:53  the_storage_system\save_out.c
     文件         304  2015-06-16 16:57  the_storage_system\the_storage_system.pro
     文件       18505  2015-06-17 23:43  the_storage_system\the_storage_system.pro.user

评论

共有 条评论