返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.   cout<<"∮∮∮愛心甜點店店∮∮∮"<<endl;
  7.   cout<<"~商品價目表~"<<endl;  
  8.   string n[5]={"卡布奇諾   ","濃郁黑咖啡 ","焦糖瑪奇朵 ","黑森林蛋糕  ","原味起司蛋糕",};
  9.   int p[5]={160,210,125,95,65};
  10.   int qty[5]={0,0,0,0,0};
  11.   int a,q,sum=0;
  12.   for(int i=0; i<=4; i++)
  13.   {
  14.           cout<<"("<<i+1<<")"<<"  "<<n[i]<<"   "<<p[i]<<endl;
  15.   }
  16.   cout<<"(6)  結帳\t\t\t\t\t\t"<<endl<<endl;
  17.   re:
  18.   cout<<"請輸入商品代碼: ";
  19.   cin>>a;
  20.   if(a>=1 && a<=5)
  21.   {
  22.          cout<<"數量: ";
  23.          cin>>q;
  24.          if(q>=1)      
  25.          {
  26.                 sum=sum+p[a-1]*q;
  27.                 qty[a-1]=qty[a-1]+q;
  28.                 goto re;
  29.          }else
  30.          {
  31.                 cout<<"輸入錯誤!"<<endl;
  32.                 goto re;  
  33.          }
  34.   }else if(a==6)
  35.   {
  36.          goto checkout;
  37.   }else
  38.   {     
  39.          cout<<"輸入錯誤!"<<endl;
  40.          system ("pause");
  41.          goto re;
  42.   }
  43.   checkout:
  44.   cout<<"[購物清單]"<<endl;
  45.   cout<<"=========================="<<endl;
  46.   for(int i=0; i<=4; i++)
  47.   {     
  48.         if(qty[i]!=0)
  49.         cout<<n[i]<<"\t"<<p[i]<<"元*"<<qty[i]<<"個!"<<endl;   
  50.   }
  51.   cout<<"=========================="<<endl;
  52.   cout<<"總共"<<sum<<"元!"<<endl;
  53.   system ("pause");   
  54.   return 0;   
  55. }
複製代碼

TOP

返回列表