91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++怎么實現超市商品管理系統最新版

發布時間:2021-06-19 19:24:19 來源:億速云 閱讀:244 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“C++怎么實現超市商品管理系統最新版”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“C++怎么實現超市商品管理系統最新版”這篇文章吧。

一、問題描述及功能要求

1.提供商品系統的添加、刪除、編輯、顯示等功能。
2.同類系統多數使用結構體數組來操作數據,本系統使用鏈表結構操作數據,提高了數據處理的效率。

二、代碼實現 帶有注釋

廢話不說,直接代碼,歡迎指正。
大家CV可能有不兼容的情況,可以滴滴,盡可能解決問題地回復。

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

//以下是類的設計

class commodity
{
public:
char name[20];
char Id[20];
int buy;//進貨價;
int sale;//賣出價;
int amount;//數量;
int sum;//利潤;
commodity * Next;
void Input()
{
cout<<"\t\t請輸入商品的名稱:"; cin>>name;
cout<<"\t\t請輸入商品的編號:"; cin>>Id;
cout<<"\t\t請輸入進貨價:"; cin>>buy;
cout<<"\t\t請輸入售出價:"; cin>>sale;
cout<<"\t\t請輸入商品數量:"; cin>>amount;
sum=(sale-buy)*amount;
}
void ReadFile(istream & in)
{
in>>name>>Id>>sale>>buy>>sum;
}
void Show()
{
cout<<"商品名"<<name<<endl<<"編號:"<<Id<<endl<<"進貨價"<<buy<<"售出價"<<sale<<"商品數量:"<<
amount<<"預計總利潤:"<<sum<<endl<<endl<<endl;
}
};
//以下是對象或對象數組的定義
//﹌﹌﹌﹌﹌﹌﹌﹌﹌Commoditymassage類﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
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<<"輸入任意字符!繼續……";
getch();
}
void AddItem()
{
End->Input();
End->Next=new commodity;
End=End->Next;
cout<<"添加成功!"<<endl;
cout<<"輸入任意字符!繼續……";
getch();
}
private:
commodity * Head,* End;
ifstream in;
ofstream out;
commodity *FindItem(char * name)
{
for(commodity * p=Head;p->Next!=End;p=p->Next)//匹配成功則返回上一個指針,不成功就返回空
if(!strcmp(p->Next->name,name))return p;
return NULL;
}
commodity *FindID(char * Id)
{
for(commodity * p=Head;p->Next!=End;p=p->Next)//匹配成功則返回上一個指針,不成功就返回空
if(!strcmp(p->Next->Id,Id))return p;
return NULL;
}
};
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌構造函數﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
Commoditymassage::Commoditymassage()
{
Head=new commodity;
Head->Next=new commodity;
End=Head->Next;
in.open("sort.txt");
if(!in)
cout<<"無商品信息。請先輸入。"<<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;
}
}
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌析構函數﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
Commoditymassage::~Commoditymassage()
{
Save();
for(commodity * temp;Head->Next!=End;)
{
temp=Head->Next;
Head->Next=Head->Next->Next;
delete temp;
}
delete Head,End;
}

//以下是主函數
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*****【 歡迎進入超市商品管理系統 】*****"<<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<<"按任意鍵開始……";
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<<"           超 市 商 品 管 理 系 統 "<<endl;
cout<<"          ┌────-────┐"<<endl;
cout<<"          │  1.增加超市商品 │"<<endl;
cout<<"          │  2.顯示超市商品 │"<<endl;
cout<<"          │  3.排序統計商品 │"<<endl;
cout<<"          │  4.查找超市商品 │"<<endl;
cout<<"          │  5.刪除超市商品 │"<<endl;
cout<<"          │  6.修改超市商品 │"<<endl;
cout<<"          │  0.安全退出系統 │"<<endl;
cout<<"          └────────-┘"<<endl;
cout<<"\n\t\t\n\t\t請選擇:";
}
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌查找函數﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
void Commoditymassage::Find()
{
char name[20] ,Id[10];
int x;
commodity * p=NULL;
cout<<"\n\t\t*********************************\n";
cout<<"\t\t※ 1.按商品的名稱查找\n\t\t※ 2.按商品編號查找";
cout<<"\n\t\t*********************************\n請選擇:";
cin>>x;
switch(x)
{
case 1:{cout<<"\t\t請輸入要查找的商品的名稱:";cin>>name;
if(p=FindItem(name))
{
p->Next->Show();
cout<<"輸入任意字符!繼續……";
getch();
}
else
{
cout<<"\t\t沒有找到該名稱的商品!"<<'\n'<<endl;
cout<<"輸入任意字符!繼續……";
getch();
}
}break;
case 2:
{
cout<<"\t\t請輸入要查找的商品的編號:";cin>>Id;
if(p=FindID(Id))
{
p->Next->Show();
cout<<"輸入任意字符!繼續……";
getch();
}
else
{
cout<<"\t\t沒有找到該編號的商品!"<<'\n'<<endl;
cout<<"輸入任意字符!繼續……";
getch();
}
}break;
}
}
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌修改商品信息﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
void Commoditymassage::ModifyItem() //修改商品信息
{
char name[20];
commodity * p=NULL;
cout<<"\t\t請輸入要修改的商品的名稱:";cin>>name;
if(p=FindItem(name))
{
cout<<"\t\t已找到商品的信息,請輸入新的信息!"<<endl;
p->Next->Input();
cout<<"修改成功!"<<endl;
cout<<"輸入任意字符!繼續……";
getch();
}
else
{
cout<<"\t\t沒有找到!"<<endl;
cout<<"輸入任意字符!繼續……";
getch();
}
}
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌刪除信息﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
void Commoditymassage::RemoveItem() // 刪除信息
{
char name[20];
commodity * p=NULL,*temp=NULL;
cout<<"\t\t請輸入要刪除的商品的名稱:"<<endl;cin>>name;
if(p=FindItem(name))
{
temp=p->Next;
p->Next=p->Next->Next;
delete temp;
cout<<"\t\t刪除成功!"<<endl;
cout<<"輸入任意字符!繼續……";
getch();
}
else
{
cout<<"\t\t沒有找到!"<<endl;
cout<<"輸入任意字符!繼續……";
getch();
}
}
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
void Commoditymassage::Swap(commodity *p1, commodity *p2)//交換兩個combox變量的數據域
{
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()//統計當前鏈表的記錄總數,返回一個整數
{
if(! Head)
return 0;
int n=0;
for(commodity * p=Head->Next;p!=End;p=p->Next)
{
n++;
}
return n;
}
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
void Commoditymassage::Sort()//對當前鏈表進行排序
{
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;
}
//﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌保存函數﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌﹌
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();
}

以上是“C++怎么實現超市商品管理系統最新版”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

区。| 贵定县| 那坡县| 余姚市| 阿图什市| 三河市| 弥勒县| 都江堰市| 通河县| 安多县| 吉木萨尔县| 墨竹工卡县| 壤塘县| 西青区| 石狮市| 韶山市| 临洮县| 普兰县| 沙坪坝区| 清水河县| 东光县| 朝阳区| 饶阳县| 斗六市| 石屏县| 江阴市| 阿拉善右旗| 武城县| 通榆县| 尤溪县| 班玛县| 双牌县| 宝坻区| 万州区| 竹北市| 铜鼓县| 林芝县| 宝清县| 新兴县| 陵水| 九龙城区|