中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

C++如何實(shí)現(xiàn)超市商品管理系統(tǒng)-創(chuàng)新互聯(lián)

這篇文章主要介紹“C++如何實(shí)現(xiàn)超市商品管理系統(tǒng)”,在日常操作中,相信很多人在C++如何實(shí)現(xiàn)超市商品管理系統(tǒng)問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”C++如何實(shí)現(xiàn)超市商品管理系統(tǒng)”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

成都創(chuàng)新互聯(lián)是一家專(zhuān)業(yè)提供偃師企業(yè)網(wǎng)站建設(shè),專(zhuān)注與網(wǎng)站設(shè)計(jì)、網(wǎng)站制作html5、小程序制作等業(yè)務(wù)。10年已為偃師眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專(zhuān)業(yè)網(wǎng)絡(luò)公司優(yōu)惠進(jìn)行中。

一、問(wèn)題描述及功能要求

1.提供商品系統(tǒng)的添加、刪除、編輯、顯示等功能。
2.同類(lèi)系統(tǒng)多數(shù)使用結(jié)構(gòu)體數(shù)組來(lái)操作數(shù)據(jù),本系統(tǒng)使用鏈表結(jié)構(gòu)操作數(shù)據(jù),提高了數(shù)據(jù)處理的效率。

二、代碼實(shí)現(xiàn) 帶有注釋

#include <iostream>
#include <string.h>
#include <fstream>
#include <conio.h>//用getch();
using namespace std;

//以下是類(lèi)的設(shè)計(jì)

class commodity
{
public:
char name[20];
char Id[20];
int buy;//進(jìn)貨價(jià);
int sale;//賣(mài)出價(jià);
int amount;//數(shù)量;
int sum;//利潤(rùn);
commodity * Next;
void Input()
{
cout<<"\t\t請(qǐng)輸入商品的名稱(chēng):"; cin>>name;
cout<<"\t\t請(qǐng)輸入商品的編號(hào):"; cin>>Id;
cout<<"\t\t請(qǐng)輸入進(jìn)貨價(jià):"; cin>>buy;
cout<<"\t\t請(qǐng)輸入售出價(jià):"; cin>>sale;
cout<<"\t\t請(qǐng)輸入商品數(shù)量:"; cin>>amount;
sum=(sale-buy)*amount;
}
void ReadFile(istream & in)
{
in>>name>>Id>>sale>>buy>>sum;
}
void Show()
{
cout<<"商品名"<<name<<endl<<"編號(hào):"<<Id<<endl<<"進(jìn)貨價(jià)"<<buy<<"售出價(jià)"<<sale<<"商品數(shù)量:"<<
amount<<"預(yù)計(jì)總利潤(rùn):"<<sum<<endl<<endl<<endl;
}
};
//以下是對(duì)象或?qū)ο髷?shù)組的定義
//﹌﹌﹌﹌﹌﹌﹌﹌﹌Commoditymassage類(lèi)﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
class Commoditymassage
{
public:
Commoditymassage();
~Commoditymassage();
void ShowMenu();
void Find();
void Save();
void ModifyItem();
void RemoveItem();
void Swap(commodity *,commodity *);
void Sort();
int ListCount();
void Display()
{
for(commodity * p=Head->Next;p!=End;p=p->Next)
p->Show();
cout<<"輸入任意字符!繼續(xù)……";
getch();
}
void AddItem()
{
End->Input();
End->Next=new commodity;
End=End->Next;
cout<<"添加成功!"<<endl;
cout<<"輸入任意字符!繼續(xù)……";
getch();
}
private:
commodity * Head,* End;
ifstream in;
ofstream out;
commodity *FindItem(char * name)
{
for(commodity * p=Head;p->Next!=End;p=p->Next)//匹配成功則返回上一個(gè)指針,不成功就返回空
if(!strcmp(p->Next->name,name))return p;
return NULL;
}
commodity *FindID(char * Id)
{
for(commodity * p=Head;p->Next!=End;p=p->Next)//匹配成功則返回上一個(gè)指針,不成功就返回空
if(!strcmp(p->Next->Id,Id))return p;
return NULL;
}
};
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌構(gòu)造函數(shù)﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
Commoditymassage::Commoditymassage()
{
Head=new commodity;
Head->Next=new commodity;
End=Head->Next;
in.open("sort.txt");
if(!in)
cout<<"無(wú)商品信息。請(qǐng)先輸入。"<<endl;
else
{
while(!in.eof())
{
End->ReadFile(in);
if(End->name[0]=='\0')break;
End->Next=new commodity;
End=End->Next;
}
in.close();
cout<<"\t\t讀取商品信息成功!"<<endl;
}
}
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌析構(gòu)函數(shù)﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
Commoditymassage::~Commoditymassage()
{
Save();
for(commodity * temp;Head->Next!=End;)
{
temp=Head->Next;
Head->Next=Head->Next->Next;
delete temp;
}
delete Head,End;
}

//以下是主函數(shù)
int main()
{
int x,i=0;
bool quit=false;
cout<<"\t\t**************************"<<endl;
for(i=0;i<3;i++)
cout<<"\t\t*\t\t\t\t\t\t *"<<endl;
cout<<"\t\t*****【 歡迎進(jìn)入超市商品管理系統(tǒng) 】*****"<<endl;
for(i=0;i<3;i++)
cout<<"\t\t◎\t\t\t\t\t\t ◎"<<endl;
cout<<"\t\t**************************\n"<<endl;;
Commoditymassage Grade;
cout<<"按任意鍵開(kāi)始……";
getch();
while(!quit)
{

Grade.ShowMenu();
cin>>x;
switch(x)
{
case 0:quit=true;break;
case 1:Grade.AddItem();break;
case 2:Grade.Display();break;
case 3:Grade.Sort();break;
case 4:Grade.Find();break;
case 5:Grade.RemoveItem();break;
case 6:Grade.ModifyItem();break;
}
}
return 0;
}
void Commoditymassage::ShowMenu()
{
cout<<"           超 市 商 品 管 理 系 統(tǒng) "<<endl;
cout<<"          ┌────-────┐"<<endl;
cout<<"          │  1.增加超市商品 │"<<endl;
cout<<"          │  2.顯示超市商品 │"<<endl;
cout<<"          │  3.排序統(tǒng)計(jì)商品 │"<<endl;
cout<<"          │  4.查找超市商品 │"<<endl;
cout<<"          │  5.刪除超市商品 │"<<endl;
cout<<"          │  6.修改超市商品 │"<<endl;
cout<<"          │  0.安全退出系統(tǒng) │"<<endl;
cout<<"          └────────-┘"<<endl;
cout<<"\n\t\t\n\t\t請(qǐng)選擇:";
}
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌查找函數(shù)﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
void Commoditymassage::Find()
{
char name[20] ,Id[10];
int x;
commodity * p=NULL;
cout<<"\n\t\t*********************************\n";
cout<<"\t\t※ 1.按商品的名稱(chēng)查找\n\t\t※ 2.按商品編號(hào)查找";
cout<<"\n\t\t*********************************\n請(qǐng)選擇:";
cin>>x;
switch(x)
{
case 1:{cout<<"\t\t請(qǐng)輸入要查找的商品的名稱(chēng):";cin>>name;
if(p=FindItem(name))
{
p->Next->Show();
cout<<"輸入任意字符!繼續(xù)……";
getch();
}
else
{
cout<<"\t\t沒(méi)有找到該名稱(chēng)的商品!"<<'\n'<<endl;
cout<<"輸入任意字符!繼續(xù)……";
getch();
}
}break;
case 2:
{
cout<<"\t\t請(qǐng)輸入要查找的商品的編號(hào):";cin>>Id;
if(p=FindID(Id))
{
p->Next->Show();
cout<<"輸入任意字符!繼續(xù)……";
getch();
}
else
{
cout<<"\t\t沒(méi)有找到該編號(hào)的商品!"<<'\n'<<endl;
cout<<"輸入任意字符!繼續(xù)……";
getch();
}
}break;
}
}
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌修改商品信息﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
void Commoditymassage::ModifyItem() //修改商品信息
{
char name[20];
commodity * p=NULL;
cout<<"\t\t請(qǐng)輸入要修改的商品的名稱(chēng):";cin>>name;
if(p=FindItem(name))
{
cout<<"\t\t已找到商品的信息,請(qǐng)輸入新的信息!"<<endl;
p->Next->Input();
cout<<"修改成功!"<<endl;
cout<<"輸入任意字符!繼續(xù)……";
getch();
}
else
{
cout<<"\t\t沒(méi)有找到!"<<endl;
cout<<"輸入任意字符!繼續(xù)……";
getch();
}
}
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌刪除信息﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
void Commoditymassage::RemoveItem() // 刪除信息
{
char name[20];
commodity * p=NULL,*temp=NULL;
cout<<"\t\t請(qǐng)輸入要?jiǎng)h除的商品的名稱(chēng):"<<endl;cin>>name;
if(p=FindItem(name))
{
temp=p->Next;
p->Next=p->Next->Next;
delete temp;
cout<<"\t\t刪除成功!"<<endl;
cout<<"輸入任意字符!繼續(xù)……";
getch();
}
else
{
cout<<"\t\t沒(méi)有找到!"<<endl;
cout<<"輸入任意字符!繼續(xù)……";
getch();
}
}
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
void Commoditymassage::Swap(commodity *p1, commodity *p2)//交換兩個(gè)combox變量的數(shù)據(jù)域
{
commodity *temp=new commodity;
strcpy(temp->name,p1->name);
strcpy(temp->Id,p1->Id);
temp->sale=p1->sale;
temp->buy=p1->buy;
temp->sum=p1->sum;
strcpy(p1->name,p2->name);
strcpy(p1->Id,p2->Id);
p1->sale=p2->sale;
p1->buy=p2->buy;
p1->sum=p2->sum;
strcpy(p2->name,temp->name);
strcpy(p2->Id,temp->Id);
p2->sale=temp->sale;
p2->buy=temp->buy;
p2->sum=temp->sum;
}
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
int Commoditymassage::ListCount()//統(tǒng)計(jì)當(dāng)前鏈表的記錄總數(shù),返回一個(gè)整數(shù)
{
if(! Head)
return 0;
int n=0;
for(commodity * p=Head->Next;p!=End;p=p->Next)
{
n++;
}
return n;
}
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
void Commoditymassage::Sort()//對(duì)當(dāng)前鏈表進(jìn)行排序
{
cout <<"Sorting..."<<endl;
commodity *p=NULL,*p1=NULL,*k=NULL;
int n=Commoditymassage::ListCount();
if(n<2)
return;
for(p=Head->Next;p!=End;p=p->Next)
for(k=p->Next;k!=End;k=k->Next)
{
if(p->sum>k->sum)
{
Commoditymassage::Swap(p,k);
}
}
cout <<"排序完成!"<<endl;
getch();
return;
}
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌保存函數(shù)﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
void Commoditymassage::Save()
{
out.open("sort.txt");
for(commodity *p=Head->Next;p!=End;p=p->Next)
out<<p->name<<"\t"<<p->Id<<"\t"<<p->sum<<'\n';
out.close();
}

到此,關(guān)于“C++如何實(shí)現(xiàn)超市商品管理系統(tǒng)”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

網(wǎng)站欄目:C++如何實(shí)現(xiàn)超市商品管理系統(tǒng)-創(chuàng)新互聯(lián)
網(wǎng)站地址:http://www.rwnh.cn/article18/cciigp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開(kāi)發(fā)企業(yè)建站、品牌網(wǎng)站建設(shè)、網(wǎng)站建設(shè)、Google、外貿(mào)網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站建設(shè)
巧家县| 合山市| 大荔县| 溆浦县| 巴楚县| 康平县| 怀宁县| 工布江达县| 定南县| 兴海县| 金昌市| 柳林县| 舟曲县| 庆城县| 桦南县| 兴隆县| 棋牌| 浑源县| 章丘市| 罗山县| 响水县| 台东市| 庄河市| 河北区| 马尔康县| 会昌县| 麟游县| 瑞丽市| 饶阳县| 红桥区| 苗栗市| 西吉县| 获嘉县| 长垣县| 桃园县| 施秉县| 屏东县| 分宜县| 嵊泗县| 晋宁县| 永年县|