2022年服装超市管理系统源代码 3.pdf
《2022年服装超市管理系统源代码 3.pdf》由会员分享,可在线阅读,更多相关《2022年服装超市管理系统源代码 3.pdf(14页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、/服装超市管理系统#include #include #include #include /using namespace std; #define N 30 bool again; char fileName=super.dat; / class Goods protected: int num; char name20; float enter_price; float sale_price; int stocks; float profit; public: Goods(char *G_name= ,float e_price=0,float s_price=0,int st=0); G
2、oods() int Get_num(); float Ge_price(); float Gs_price(); int G_stocks(); float Get_profit(); char *Getname(); void Compute_profit(); void Input(); void Output(); ; class jacket:public Goods / char merchant20; public: jacket(char *G_name= ,float e_price=0,float s_price=0,int st=0,char *mer= );/ jack
3、et()/ void Input(); void Output(); ; class jeans_wear:public Goods / char brand20; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 14 页 - - - - - - - - - public: jeans_wear(char *G_name= ,float e_price=0,float s_price=0,int st=0,char *br= );/ jeans_wear()/ void
4、Input(); void Output(); ; class sports_wear:public Goods / public: sports_wear(char *G_name= ,float e_price=0,float s_price=0,int st=0);/ sports_wear()/ void Input(); void Output(); ; class suits:public Goods / char factory20; public: suits(char *G_name= ,float e_price=0,float s_price=0,int st=0,cha
5、r *fac= );/ suits() / void Input(); void Output(); ; class shirt:public Goods/ 新增加衬衣类 char mmn20; public: shirt(char *G_name= ,float e_price=0,float s_price=0,int st=0,char *mm= ); shirt()/ void Input(); void Output(); ; / 衬衣类结束行class System Goods A; jacket B10; / jeans_wear C10; / sports_wear D10;
6、/ suits E10; / shirt F10; / 衬衣static int j1,j2,j3,j4,j5; void infor1(); void infor2(); void infor3(); void infor4(); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 14 页 - - - - - - - - - void infor5();/衬衣void Success(); void save(); void Search1(int h,char ch20
7、); void Out_Profit1(int h,char *name); void Interface1(); public: System(); void In_information(); void Search(); void Out_Profit(); void Interface(); ; / Goods:Goods(char *G_name,float e_price,float s_price,int st) strcpy(name,G_name); enter_price=e_price; sale_price=s_price; stocks=st; int Goods:G
8、et_num() return num; float Goods:Ge_price() return enter_price; float Goods:Gs_price() return sale_price; int Goods:G_stocks() return stocks; float Goods:Get_profit() return profit; char *Goods:Getname() return name; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页
9、,共 14 页 - - - - - - - - - void Goods:Compute_profit() profit=(sale_price-enter_price)*stocks; void Goods:Input() coutname; coutenter_price; coutsale_price; coutstocks; void Goods:Output() couttt 种类编号 :numendl; couttt 商品名 :nameendl; couttt 进价 :enter_priceendl; couttt 售价 :sale_priceendl; couttt 库存量 :s
10、tocksendl; jacket:jacket(char *G_name,float e_price,float s_price,int st,char *mer):Goods(G_name,e_price,s_price,st)/ num=1; strcpy(merchant,mer); void jacket:Input()/ Goods:Input(); coutmerchant; void jacket:Output()/ Goods:Output(); couttt 批发商信息 :merchantendl; jeans_wear:jeans_wear(char *G_name,fl
11、oat e_price,float s_price,int st,char *br):Goods(G_name,e_price,s_price,st)/ num=2; strcpy(brand,br); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 14 页 - - - - - - - - - void jeans_wear:Input()/ Goods:Input(); coutbrand; void jeans_wear:Output()/ Goods:Output
12、(); couttt 品牌 :brandendl; sports_wear:sports_wear(char *G_name,float e_price,float s_price,int st):Goods(G_name,e_price,s_price,st)/ num=3; void sports_wear:Input()/ Goods:Input(); void sports_wear:Output()/ Goods:Output(); suits:suits(char *G_name,float e_price,float s_price,int st,char *fac):Goods
13、(G_name,e_price,s_price,st)/ num=4; strcpy(factory,fac); void suits:Input()/ Goods:Input(); coutfactory; void suits:Output()/ Goods:Output(); couttt 厂家 :factoryendl; shirt:shirt(char *G_name,float e_price,float s_price,int st,char *mm):Goods(G_name,e_price,s_price,st)/ num=5; 名师资料总结 - - -精品资料欢迎下载 -
14、- - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 14 页 - - - - - - - - - strcpy(mmn,mm); void shirt:Input()/ Goods:Input(); couttt 厂家 :; void shirt:Output()/ Goods:Output(); couttt 厂家 :mmnendl; int System:j1=0; int System:j2=0; int System:j3=0; int System:j4=0; int System:j5=0; System:S
15、ystem() save(); void System:Interface1() coutnnn; couttt 种类管理 endl; coutendl; couttt 大型服装商场服装类别endl; coutendl; couttt 1.夹克衫endl; coutendl; couttt 2.牛仔装endl; coutendl; couttt 3.运动装endl; coutendl; couttt 4.西装endl; coutendl; couttt 5.衬衣endl; coutendl; couttt 6.退出endl; coutendl; coutrevl; switch(revl) c
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年服装超市管理系统源代码 2022 服装 超市 管理 系统 源代码
限制150内