同学们应该都去麦当劳或肯德基吃过快餐吧?请同学们参考肯德基官网的信息模拟肯德基快餐店的收银系统,合理使用
C++/python/Java,结合设计模式(2种以上)至少实现系统的以下功能:
1.正常餐品结算和找零。
2.基本套餐结算和找零。
3.使用优惠劵购买餐品结算和找零。
4.可在一定时间段参与店内活动(自行设计或参考官网信息)。
5.模拟打印小票的功能(写到文件中)。
基本要求:
1.程序设计风格良好,控制台界面友好,最多两人一组完成任务。
2.实现功能测试代码,确保程序的健壮性。
3.画出使用的设计模式图。
提高要求:
1.实现可视化界面。
2.实现会员储值卡功能,完成储值卡消费。
3.实现当天营业额和餐品销量计算和统计,用数据库记录。
本系统中用到的知识点:
1,.用到了对象数组:对象数组,创建方法:
类类型 数组名[元素个数]
= { 数组的初始化列表… };
类名 数组名[元素个数]
2.工厂方法模式:是指定义一个创建对象的接口,让子类决定实例化哪一个类,Factory Method使一个类的实例化延迟到其子类。
3.抽象工厂模式:抽象工厂模式是所有形态的工厂模式中最为抽象和最具一般性的一种形态。抽象工厂模式是指当有多个抽象角色时,使用的一种工厂模式。抽象工厂模式可以向客户端提供一个接口,使客户端在不必指定产品的具体的情况下,创建多个产品族中的产品对象。
class food
{
public:
string name;
int price;
food(){}
food(string n,int p):name(n),price(p){}
};
food zhushi[3]={food("鸡肉汉堡",15),food("烤肉饭",15),food("鸡肉卷",8)}; //对象数组,创建方法:类类型
数组名[元素个数] = { 数组的初始化列表... };
food fushi[3]={food("烤鸡",20),food("鸡米花",9),food("大薯条",6)};
food yinliao[3]={food("可口可乐",5),food("拿铁咖啡",6),food("热牛奶",6)};
class Taocan :public food
{
public:
string name;
food tc[3]; //
int price;
Taocan(){}
Taocan(string n,food a,food b,food c)
//构造函数
{
name=n;
tc[0]=a;
tc[1]=b;
tc[2]=c;
price=a.price+b.price+c.price;
}
};
Taocan taocan[3]={Taocan("鸡腿汉堡套餐",zhushi[0],fushi[0],yinliao[0]),Taocan("鸡米花套餐",zhushi[1],fushi[1],yinliao[0]),Taocan("鸡肉卷薯条套餐",zhushi[2],fushi[2],yinliao[0])};
food food1[13];
int money1; //消费金额
int num1=0; //点餐数量
/*void write()
{
ofstream f("list.txuant");
int i;
f
<< "KFC消费清单\n";
for(i=0;i<num1;i++)
f<<i+1<<"、"<<food1[i].name<<" 价格:"<<food1[i].price<<endl;
f<<"总价格、"<<money1<<endl;
f<<endl<<endl;
f.close();
system("list.txuant");
}*/
void selectzhushi()
{
void Menu();
void Diancan();
system("cls");
cout<<"1、"<<zhushi[0].name<<"
价格:"<<zhushi[0].price<<endl;
cout<<"2、"<<zhushi[1].name<<"
价格:"<<zhushi[1].price<<endl;
cout<<"3、"<<zhushi[2].name<<"
价格:"<<zhushi[2].price<<endl;
cout<<"4、返回"<<endl;
char c;
c=getch();
if(c=='1')
{
food1[num1]=zhushi[0];
money1+=zhushi[0].price;
num1++;
}
else if(c=='2')
{
food1[num1]=zhushi[1];money1+=zhushi[1].price;num1++;
}
else if (c=='3')
{
food1[num1]=zhushi[2];money1+=zhushi[2].price;num1++;
}
else if(c=='4')
{
Diancan(); }
else
{
printf("\n您的按键有误,按任意键重新选择!\n");
getch();
selectzhushi();
}
printf("\n点餐成功!请按任意键继续点餐或者返回!\n");
getch();
if(num1>5)
{
cout<<"您本次点餐已经达到上限!如果需要!请结算后继续点餐!"<<endl;
printf("\n按任意键进入菜单!\n");
getch();
Menu();
}
else selectzhushi();
}
void selectfushi()
{
void Menu();
void Diancan();
system("cls");
cout<<"1、"<<fushi[0].name<<" 价格:"<<fushi[0].price<<endl;
cout<<"2、"<<fushi[1].name<<" 价格:"<<fushi[1].price<<endl;
cout<<"3、"<<fushi[2].name<<" 价格:"<<fushi[2].price<<endl;
cout<<"4、返回"<<endl;
char c;
c=getch();
if(c=='1')
{
food1[num1]=fushi[0];money1+=fushi[0].price;num1++;
}
else if(c=='2')
{
food1[num1]=fushi[1];money1+=fushi[1].price;num1++;
}
else if (c=='3')
{
food1[num1]=fushi[2];money1+=fushi[2].price;num1++;
}
else if(c=='4')
{
Diancan(); }
else{
printf("\n您的按键有误,按任意键重新选择!\n");
getch();
selectfushi();
}
printf("\n点餐成功!请按任意键继续点餐或者返回!\n");
getch();
if(num1>5)
{
cout<<"您本次点餐已经达到上限!如果需要!请结算后继续点餐!"<<endl;
printf("\n按任意键进入菜单!\n");
getch();
Menu();
}
else selectfushi();
}
void selectyinliao()
{
void Menu();
void Diancan();
system("cls");
cout<<"1、"<<yinliao[0].name<<" 价格:"<<yinliao[0].price<<endl;
cout<<"2、"<<yinliao[1].name<<" 价格:"<<yinliao[1].price<<endl;
cout<<"3、"<<yinliao[2].name<<" 价格:"<<yinliao[2].price<<endl;
cout<<"4、返回"<<endl;
char c;
c=getch();
if(c=='1')
{
food1[num1]=yinliao[0];money1+=yinliao[0].price;num1++;
}
else if(c=='2')
{
food1[num1]=yinliao[1];money1+=yinliao[1].price;num1++;
}
else if (c=='3')
{
food1[num1]=yinliao[2];money1+=yinliao[2].price;num1++;
}
else if(c=='4')
{
Diancan(); }
else{
printf("\n您的按键有误,按任意键重新选择!\n");
getch();
selectyinliao();
}
printf("\n点餐成功!请按任意键继续点餐或者返回!\n");
getch();
if(num1>5)
{
cout<<"您本次点餐已经达到上限!如果需要!请结算后继续点餐!"<<endl;
printf("\n按任意键进入菜单!\n");
getch();
Menu();
}
else selectyinliao();
}
void selectTaocan()
{
void Menu();
void Diancan();
cout<<"1、"<<taocan[0].name<<"
价格:"<<taocan[0].price<<endl;
cout<<"2、"<<taocan[1].name<<"
价格:"<<taocan[1].price<<endl;
cout<<"3、"<<taocan[2].name<<"
价格:"<<taocan[2].price<<endl;
cout<<"4、返回"<<endl;
char c;
c=getch();
if(c=='1')
{
money1+=taocan[0].price;
food1[num1]=taocan[0].tc[0];num1++;
food1[num1]=taocan[0].tc[1];num1++;
food1[num1]=taocan[0].tc[2];num1++;
}
else if(c=='2')
{
money1+=taocan[1].price;
food1[num1]=taocan[1].tc[0];num1++;
food1[num1]=taocan[1].tc[1];num1++;
food1[num1]=taocan[1].tc[2];num1++;
}
else if (c=='3')
{
money1+=taocan[2].price;
food1[num1]=taocan[2].tc[0];num1++;
food1[num1]=taocan[2].tc[1];num1++;
food1[num1]=taocan[2].tc[2];num1++;
}
else if(c=='4')
{
Diancan(); }
else{
printf("\n您的按键有误,按任意键重新选择!\n");
getch();
Taocan();
}
printf("\n点餐成功!请按任意键继续点餐或者返回!\n");
getch();
if(num1>5)
{
cout<<"您本次点餐已经达到上限!如果需要!请结算后继续点餐!"<<endl;
printf("\n按任意键进入菜单!\n");
getch();
Menu();
}
else Taocan();
}
void Diancan()
{
void Menu();
system("cls");
cout<<"1、主食"<<endl;
cout<<"2、饭后甜点"<<endl;
cout<<"3、饮料"<<endl;
cout<<"4、套餐"<<endl;
cout<<"5、返回"<<endl;
char c;
c=getch();
if(c=='1')
{
selectzhushi();
}
else if(c=='2')
{
selectfushi();
}
else if (c=='3')
{
selectyinliao();
}
else if(c=='4')
{
selectTaocan(); }
else
if(c=='5'){ Menu();
}
}
void Zhifu()
{
void Menu();
cout<<"您本次消费"<<money1<<"元!请支付现金!"<<endl;
int m,s;
cin>>m;
s=m-money1;
while(s<0)
{
cout<<"您给的现金不足,还需要"<<0-s<<"元!请继续支付现金!"<<endl;
cin>>m;
s=m+s;
}
cout<<"支付成功!找零"<<s<<"元!祝您生活愉快!"<<endl;
printf("\n按任意键返回菜单!\n");
getch();
Menu();
}
void Youhuijuan()
{
void Menu();
printf("\n请输入您的优惠券!\n");
string yhq;
cin>>yhq;
if(yhq=="15249278908")
{
cout<<"您已成功使用10元优惠券!"<<endl;
money1=money1-10;
}
else
{
cout<<"对不起!您的优惠券无效!"<<endl;
getch();
Menu();
}
getch();
Zhifu();
}
void Jiesuan()
{
void Menu();
system("cls");
cout<<"1、使用优惠券"<<endl;
cout<<"2、直接支付"<<endl;
cout<<"3、返回"<<endl;
char c;
c=getch();
if(c=='1')
{
Youhuijuan();
}
else if(c=='2')
{
Zhifu();
}
else if(c=='4')
{
Menu(); }
}
void Show()
{
void Menu();
system("cls");
int i;
for(i=0;i<num1;i++)
cout<<"你已经点了"<<i+1<<"
"<<food1[i].name<<" 价格是
"<<food1[i].price<<"元"<<endl;
cout<<"总价格、"<<money1<<endl;
printf("\n按任意键返回菜单!\n");
getch();
Menu();
}
void Menu()
{
system("cls");
cout<<endl<<endl<<"欢迎进入!"<<endl<<endl;
cout<<"请选择服务:"<<endl;
cout<<"1、点餐"<<endl;
cout<<"2、查看已点"<<endl;
cout<<"3、结算"<<endl;
cout<<"4、退出"<<endl;
char c;
c=getch();
if(c=='1')
{Diancan();
}
else if(c=='2')
{
Show();
}
else if (c=='3')
{
Jiesuan();
}
else if(c=='4')
{
exit(0); }
}
void main()
{
Menu();
}
测试结果:
在这里插入图片描述
调试结果: