用C语言制作小型商品信息管理系统过程中的问题

大神请默默飘过。。。

以下是第一次制作时的源码:

// 商品信息管理.cpp : 定义控制台应用程序的入口点。
//

// 小型商品信息管理系统.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include<stdio.h>
#include<stdlib.h>
#include<iostream>
#include<fstream>
#include<string>
#include<conio.h>
#include<iostream>
#include<sstream>
using namespace std;

//定义结构体
typedef struct goods{
    string name;//商品名
    string number;//商品编号
    string area_of_producting;//出产地
    string the_date_of_purchase;//进货日期
    string sales_man;//进货商
    int price;//商品单价
    int stocks;//库存量
    struct goods *next;
    int i;//记录商品原始节点位置
    goods() {//构造函数
        name="\0";
        number="\0";
        area_of_producting="\0";
        the_date_of_purchase="\0";
        sales_man="\0";
        price=0;
        i=0;
        next=NULL;
    }
   
}Goods;

//函数声明
Goods* Search_the_massage_of_Goods(Goods* );
Goods* Delete_link_node(Goods *);
Goods* Insert_link_node(Goods*);
Goods* Create_link_node(Goods* );
Goods* Create_head();
void Input_the_massage_of_Goods(Goods *);
Goods* Sort_link_node(Goods *);
void Write_the_massage_of_one_Good_to_file(Goods *);
Goods* Read_the_massage_of_Goods_from_system();

//主函数
int main(){
    
       while(1){
        char ch='0';
        Goods *p,*pr;
        system("color A9");
        cout<<"_____________________________________________\n";
        cout<<(char)2<<"输入相应数字执行相应操作."<<(char)2<<"\n";
        cout<<"1.录入商品信息"<<(char)2<<"\n";
        cout<<"2.删除商品信息"<<(char)2<<"\n";
        cout<<"3.查询商品信息"<<(char)2<<"\n";
        cout<<"4.修改商品信息"<<(char)2<<"\n";
        cout<<"5.插入商品信息"<<(char)2<<"\n";
        cout<<"6.退出"<<(char)2<<"\n";
        cout<<"_____________________________________________\n";

Goods *head=Read_the_massage_of_Goods_from_system();;
    if(head==NULL){
        head=Create_head();
    }


        for(;ch>'6'|| ch<'1';ch=_getch());
        system("cls");
        switch(ch){
            case '1':
            p=Create_link_node(head);
            cout<<"是否立即写入商品信息 Y/N\n";
            char ch;
            for(;ch!='Y'&&ch!='y'&&ch!='N'&&ch!='n';ch=_getch());
            if(ch=='y'||ch=='Y') Input_the_massage_of_Goods(p);
            Write_the_massage_of_one_Good_to_file(p);//将信息写入文件
            break;
        case '2':
            Delete_link_node(head);
            break;
        case '3':
            Search_the_massage_of_Goods(head);
            break;
        case '4':
            cout<<"查询要修改的商品\n";
            pr=Search_the_massage_of_Goods(head);
            Input_the_massage_of_Goods(pr);
            break;
        case '5':
            Insert_link_node(head);
            break;
        case '6':
            exit(0);
            break;
        }
    }
    return 0;
}

Goods* Delete_link_node(Goods *head){
    Goods *p,*pr;
    cout<<"查询要删除的节点\n";
    p=Search_the_massage_of_Goods(head);
    if(p==head){
        p=head;
        head=p->next;
        free(p);
    }
    else if(p->next=NULL){
        for(pr=head;pr->next!=p;pr=pr->next);
        free(pr);
        pr=NULL;
        p=NULL;
    }
    else{
        for(pr=head;pr->next!=p;pr=pr->next);
        pr->next=p->next;
        free(p);
        p=NULL;
    }
    return head;
}

//创建头节点,返回头节点的指针

Goods* Create_head(){
    Goods *head;
    head=new Goods();
    head->i=1;
    head->next=NULL;
    return head;
}

//新建节点,传入头指针,如果头指针为空,将新建节作为头节点,否则将新建节
//插入至链表末尾,返回头指针

Goods* Create_link_node(Goods* head){
    Goods *p,*pr;
    p=new Goods();
    (p->i)++;
    if(head==NULL){
        head=p;
    }
    else{
        for(pr=head;pr->next!=NULL;pr=pr->next);
        pr->next=p;
    }
    return head;
}

//新建节点,传入头指针,调用查询函数,插入节点至查询到的函数的前一节点

Goods* Insert_link_node(Goods*head){
    Goods *pr,*p,*temp;
    p=new Goods();
    if(p==NULL)
    {
        cout<<"No enough mrmory!\n";
        exit(0);
    }
    p->next=NULL;
    if(head==NULL)
        head=p;
    else
    {
        cout<<"插入节点至查询到的函数的前一节点\n";
        pr=Search_the_massage_of_Goods(head);
        if(pr==head)
        {
            p->next=head;
            head=p;
        }
        else
        {
            for(temp=head;temp->next==pr;temp=temp->next);
            p=temp->next;
            pr=p->next;
        }
    }
    return head;
}

//传入头指针,调用查询函数,查询相应要删除的节点,返回头指针

Goods* Search_the_massage_of_Goods(Goods* head){
    Goods* p;
    while(1){
        cout<<"__________________________________________\n";
        cout<<"输入相应数字执行相应查询操作              \n";
        cout<<"1.按商品名查询\n";
        cout<<"2.按商品编号查询\n";
        cout<<"按其余任意键退出\n";
        cout<<"__________________________________________\n";
        string s;
        char ch;
        for(;ch!='1'&&ch!='2'&&ch!='*';ch=_getch());
        switch(ch){
        case '1':
            cout<<"请输入要查询的商品名";
            cin>>s;
            for(p=head;s!=p->name;p=p->next);
            if(p==NULL) {
                cout<<"未查找到\n";
                break;
            }
            else
                cout<<"商品名"<<p->name<<"商品编号"<<p->number<<"出产地"<<p->area_of_producting<<"进货商"<<p->sales_man<<"库存量"<<"进货日期"<<p->stocks<<p->the_date_of_purchase;
            break;
            case '2':
            cout<<"请输入要查询的商品编号";
            cin>>s;
            for(p=head;s!=p->number;p=p->next);
            if(p==NULL) {
                cout<<"未查找到\n";
                break;
            }
            else
                cout<<"商品名"<<p->name<<"商品编号"<<p->number<<"出产地"<<p->area_of_producting<<"进货商"<<p->sales_man<<"库存量"<<"进货日期"<<p->stocks<<p->the_date_of_purchase;
            break;
        default:
            goto a;
            break;
        }
    }
a:;
    return p;
}
void Input_the_massage_of_Goods(Goods *p){
    cout<<"请输入商品编号";
    getline(cin,p->number);
    cout<<"请输入商品名称";
    getline(cin,p->name);
    cout<<"请输入商品出产地";
    getline(cin,p->area_of_producting);
    cout<<"请输入商品进货日期,中间用‘-’隔开";
    getline(cin,p->the_date_of_purchase);
    cout<<"请输入商品进货商";
    getline(cin,p->sales_man);
    cout<<"请输入商品库存量";
    cin>>p->stocks;
    cout<<"请输入商品单价";
    cin>>p->price;
    system("cls");
}

//排序函数,传入节点头指针,该函数要实现按商品单价排序和按商品库存量排序返回头指针
Goods* Sort_link_node(Goods *head){
    return head;
}

//输入函数,将商品信息存储到文件中,便于下次文件的初始化读写,传入新建节点的指针,将其内容写入文件末尾
void Write_the_massage_of_one_Good_to_file(Goods *p){
    ofstream file("the_massage_of_Goods.txt",ios::out|ios::ate);
    //)用 ate 方式打开一个已存在的文件,文件指针自动移到文件末尾,数据可以写入到其中。
    //用 in 方式打开文件只能用于输入数据,而且该文件必须已经存在
    if(!file){//如果文件不存在
    cout<< "不可以打开文件"<<endl;
    exit(1);
    }
    //写文件
    file<<p->i<<p->name<<p->number<<p->sales_man<<p->stocks<<p->area_of_producting<<p->price<<p->stocks<<'\n';
    //关闭文件
    file.close();
}
       
   
//在程序打开时将信息从文件读入,初始化信息
Goods* Read_the_massage_of_Goods_from_system(){
    Goods *p,*head=Create_head();
    ifstream rfile("the_massage_of_Goods.txt",ios::in);  //in 方式打开文件只能用于输入数据,而且该文件必须已经存在
       if(!rfile){        
        cout<< "不可以打开文件"<<endl;      
        exit(1);   
    }
    string str;
    for(p=head;getline(rfile,str);p=p->next){
        istringstream sin(str);
        p=new Goods();
        sin>>p->i>>p->name>>p->number>>p->sales_man>>p->stocks>>p->area_of_producting>>p->price>>p->stocks;
    }
    //rfile.close();
    return head;
}
   

这看上去好像是没什莫问题,可是在VS2008运行时,控制台一闪而过,,这是为甚末呢??小编也是苦思良久,终于得出答案,用 in 方式打开文件只能用于输入数据,而且该文件必须已经存在,所以我就在源文件出建立了the_massage_of_Goods.txt这个文件,可问题并没有解决,最后,小编在Goods* Read_the_massage_of_Goods_from_system()这个函数里加上了_getch();

Goods* Read_the_massage_of_Goods_from_system(){
    Goods *p,*head=Create_head();
    ifstream rfile("the_massage_of_Goods.txt",ios::in);  //in 方式打开文件只能用于输入数据,而且该文件必须已经存在
    _getch();
    if(!rfile){        
        cout<< "不可以打开文件"<<endl;      
        exit(1);   
    }
    string str;
    for(p=head;getline(rfile,str);p=p->next){
        istringstream sin(str);
        p=new Goods();
        sin>>p->i>>p->name>>p->number>>p->sales_man>>p->stocks>>p->area_of_producting>>p->price>>p->stocks;
    }
    //rfile.close();
    return head;
}

这时控制台终于停了下来,显示一个我设计的一个菜单界面捕获
可只要按一下,控制台又会消失,到底是哪出了问题呢??经过一再的检查代码,终于发现是这里:

捕获

只能说是文件没有成功打开,接下来我们可以试试,我对Goods* Read_the_massage_of_Goods_from_system()函数做以下修改,如果文件打开失败,那末就会打出一连串#字符号并显示不可打开文件:

Goods* Read_the_massage_of_Goods_from_system(){
    Goods *p,*head=Create_head();
    ifstream rfile("the_massage_of_Goods.txt",ios::in);  //in 方式打开文件只能用于输入数据,而且该文件必须已经存在
   
    if(!rfile){        
        cout<< "不可以打开文件"<<endl;
        cout<<"#################################################";
        _getch();
        exit(1);   
    }
    string str;
    for(p=head;getline(rfile,str);p=p->next){
        istringstream sin(str);
        p=new Goods();
        sin>>p->i>>p->name>>p->number>>p->sales_man>>p->stocks>>p->area_of_producting>>p->price>>p->stocks;
    }
    //rfile.close();
    return head;
}

运行后发现:

捕获

很明显,文件打开失败了,这又是怎末回事呢??

一般操作系统都会隐藏文件后缀,如果设置了隐藏常见文件类型,就会有两个后缀,所以就只能检测文件是否存在了,如果不存在,则重新创建一个,于是小编对Goods* Read_the_massage_of_Goods_from_system()作了如下修改:

//在程序打开时将信息从文件读入,初始化信息
Goods* Read_the_massage_of_Goods_from_system(){
    if(exist("the_massage_of_Goods.txt")==0) {
        ifstream rfile("the_massage_of_Goods.txt",ios::out);
        rfile.close();
    }      //如果文件不存在,则重新创建一个文件      

    Goods *p,*head=Create_head();
    ifstream rfile("the_massage_of_Goods.txt",ios::in);  //in 方式打开文件只能用于输入数据,而且该文件必须已经存在
   
    if(!rfile){        
        cout<< "不可以打开文件"<<endl;
        exit(1);   
    }
    string str;
    for(p=head;getline(rfile,str);p=p->next){
        istringstream sin(str);
        p=new Goods();
        sin>>p->i>>p->name>>p->number>>p->sales_man>>p->stocks>>p->area_of_producting>>p->price>>p->stocks;
    }
    rfile.close();
    return head;
}
   
int exist(char *file)    //传入想要判断的路径字符串指针
{
    FILE *fp;

    fp=fopen(file,"r");   //fopen是一个C库函数,用于打开文件,"r"是只读模式,在这种模式下,如果文件存在,则能成功以只读模式打开,fopen返回一个非0的文件描述符,如果文件不存在,则fopen返回NULL(NULL意思是空)。正好可以利用这一点来判断文件是否存在

    if(fp=NULL)

        return 0;   //不存在返回0

    else

    {

        fclose(fp);  //存在的话,要先把之前打开的文件关掉

        return 1;    //然后返回1

    }

}

最终调试成功,谢谢诸位。。。眨眼

转载于:https://www.cnblogs.com/Gaopengfei/p/3623966.html

针对超市的特点,为了帮助超市解决现在面临的问题,提高小型超市的竞争力,我们将开发以下系统:小商店管理系统(基本功能) 1.进货管理: 根据销售情况及库存情况,自动制定进货计划(亦可手工制定修改),可以避免盲目进货造成商品积压。 按计划单有选择性地进行自动入库登记。 综合查询打印计划进货与入库记录及金额。 2.销售管理: 商品正常销售、促销与限量、限期及禁止销售控制。 综合查询各种销售明细记录、各地收银员收银记录以及交结账情况等。 按多种方式统计生成销售排行榜,灵活察看和打印商品销售日、月、年报表。 3.库存管理: 综合查询库存明细记录。 库存状态自动告警提示。如库存过剩、少货、缺货等。软件为您预警,避免库存商品积压损失和缺货。 库存自动盘点计算。 1、开发背景 4 2、功能描述 4 3、业务流程分析 5 4、数据流程分析 7 4.1、数据流程图 7 4.2、数据字典 9 7.1、数据项的描述...................................................................................................................7 7.1、销售/收银处理数据字典................................................................................................7 7.1、进货管理数据字典...........................................................................................................7 7.1、库存管理数据字典...........................................................................................................7 5、概念模型设计 20 6. 逻辑模型设计和优化 22 7. 物理设计和实施 24 7.1、创建基本表......................................................................................................................25 7.1、创建视图..........................................................................................................................30 7.1、创建存储过程..................................................................................................................32 8、课程设计心得体会 34 参考文献 34
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值