- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main ()
- {
- cout<<"∮∮∮愛心甜點店店∮∮∮"<<endl;
- cout<<"~商品價目表~"<<endl;
- string n[5]={"卡布奇諾 ","濃郁黑咖啡 ","焦糖瑪奇朵 ","黑森林蛋糕 ","原味起司蛋糕",};
- int p[5]={160,210,125,95,65};
- int qty[5]={0,0,0,0,0};
- int a,q,sum=0;
- for(int i=0; i<=4; i++)
- {
- cout<<"("<<i+1<<")"<<" "<<n[i]<<" "<<p[i]<<endl;
- }
- cout<<"(6) 結帳\t\t\t\t\t\t"<<endl<<endl;
- re:
- cout<<"請輸入商品代碼: ";
- cin>>a;
- if(a>=1 && a<=5)
- {
- cout<<"數量: ";
- cin>>q;
- if(q>=1)
- {
- sum=sum+p[a-1]*q;
- qty[a-1]=qty[a-1]+q;
- goto re;
- }else
- {
- cout<<"輸入錯誤!"<<endl;
- goto re;
- }
- }else if(a==6)
- {
- goto checkout;
- }else
- {
- cout<<"輸入錯誤!"<<endl;
- system ("pause");
- goto re;
- }
- checkout:
- cout<<"[購物清單]"<<endl;
- cout<<"=========================="<<endl;
- for(int i=0; i<=4; i++)
- {
- if(qty[i]!=0)
- cout<<n[i]<<"\t"<<p[i]<<"元*"<<qty[i]<<"個!"<<endl;
- }
- cout<<"=========================="<<endl;
- cout<<"總共"<<sum<<"元!"<<endl;
- system ("pause");
- return 0;
- }
複製代碼 |