返回列表 發帖
本帖最後由 張郁偵 於 2014-2-22 17:08 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.   start:
  7.   cout<<"∮∮∮愛心甜點店店∮∮∮"<<endl;
  8.   cout<<"~商品價目表~"<<endl;  
  9.   string n[5]={"卡布奇諾   ","濃郁黑咖啡 ","焦糖瑪奇朵 ","黑森林蛋糕  ","原味起司蛋糕",};
  10.   int p[5]={160,210,125,95,65};
  11.   int qty[5]={0,0,0,0,0};
  12.   int a,q,sum=0;
  13.   int option;
  14.   int pay,money;
  15.   for(int i=0; i<=4; i++)
  16.   {
  17.           cout<<"("<<i+1<<")"<<"  "<<n[i]<<"   "<<p[i]<<endl;
  18.   }
  19.   cout<<"(6)  結帳"<<endl<<endl;
  20.   re:
  21.   cout<<"請輸入商品代碼: ";
  22.   cin>>a;
  23.   if(a>=1 && a<=5)
  24.   {
  25.          cout<<"數量: ";
  26.          cin>>q;
  27.          if(q>=1)      
  28.          {
  29.                 sum=sum+p[a-1]*q;
  30.                 qty[a-1]=qty[a-1]+q;
  31.                 goto re;
  32.          }else
  33.          {
  34.                 cout<<"輸入錯誤!"<<endl;
  35.                 goto re;  
  36.          }
  37.   }else if(a==6)
  38.   {
  39.          goto checkout;
  40.   }else
  41.   {     
  42.          cout<<"輸入錯誤!"<<endl;
  43.          system ("pause");
  44.          goto re;
  45.   }
  46.   checkout:
  47.   cout<<"[購物清單]"<<endl;
  48.   cout<<"=========================="<<endl;
  49.   for(int i=0; i<=6; i++)
  50.   {
  51.         if(qty[i]!=0)   
  52.             cout<<n[i]<<"\t"<<p[i]<<"元 * "<<qty[i]<<"個"<<endl;      
  53.   }
  54.   cout<<"=========================="<<endl;
  55.   cout<<"總共 "<<sum<<"元!"<<endl<<endl;
  56.   cout<<"(1)正確無誤(2)重新輸入"<<endl;
  57.   cin>>option;
  58.   if(option==1)
  59.     {
  60.          goto pay;
  61.     }else if(option==2)
  62.     {
  63.          system("cls");      
  64.          goto start;  
  65.     }else
  66.     {
  67.          cout<<"輸入錯誤!"<<endl;
  68.          goto start;
  69.     }
  70.     pay:
  71.     cout<<endl<<"請付帳: ";
  72.     cin>>pay;
  73.     money=pay-sum;
  74.     if(money==0)
  75.     {
  76.         cout<<"您付的錢剛剛好, 謝謝惠顧!"<<endl;
  77.     }else if(money<0)
  78.     {
  79.         cout<<"您付的錢不夠, 還差"<<-money<<"元!"<<endl;
  80.         goto pay;   
  81.     }else
  82.     {
  83.         cout<<endl<<"找您"<<money<<"元!"<<endl;
  84.         if(money>=500)
  85.         {
  86.             cout<<"五百元鈔票"<<money/500<<"張"<<endl;
  87.             money%=500;                 
  88.         }
  89.         if(money>=100)
  90.         {
  91.             cout<<"一百元鈔票"<<money/100<<"張"<<endl;
  92.             money%=100;              
  93.         }
  94.         if(money>=50)
  95.         {
  96.             cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
  97.             money%=50;              
  98.         }
  99.         if(money>=10)
  100.         {
  101.             cout<<"十元硬幣"<<money/10<<"枚"<<endl;
  102.             money%=10;              
  103.         }
  104.         if(money>=5)
  105.         {
  106.             cout<<"五元硬幣"<<money/5<<"枚"<<endl;
  107.             money%=5;              
  108.         }
  109.         if(money>=1)
  110.         {
  111.             cout<<"一元硬幣"<<money<<"枚"<<endl;              
  112.         }      
  113.     }
  114.     cout<<endl;
  115.   system ("pause");   
  116.   return 0;   
  117. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.   start:
  7.   cout<<"∮∮∮愛心甜點店店∮∮∮"<<endl;
  8.   cout<<"~商品價目表~"<<endl;  
  9.   string n[5]={"卡布奇諾   ","濃郁黑咖啡 ","焦糖瑪奇朵 ","黑森林蛋糕  ","原味起司蛋糕",};
  10.   int p[5]={160,210,125,95,65};
  11.   int qty[5]={0,0,0,0,0};
  12.   int a,q,sum=0;
  13.   int option;
  14.   int pay,money;
  15.   for(int i=0; i<=4; i++)
  16.   {
  17.           cout<<"("<<i+1<<")"<<"  "<<n[i]<<"   "<<p[i]<<endl;
  18.   }
  19.   cout<<"(6)  結帳"<<endl<<endl;
  20.   re:
  21.   cout<<"請輸入商品代碼: ";
  22.   cin>>a;
  23.   if(a>=1 && a<=5)
  24.   {
  25.          cout<<"數量: ";
  26.          cin>>q;
  27.          if(q>=1)      
  28.          {
  29.                 sum=sum+p[a-1]*q;
  30.                 qty[a-1]=qty[a-1]+q;
  31.                 goto re;
  32.          }else
  33.          {
  34.                 cout<<"輸入錯誤!"<<endl;
  35.                 goto re;  
  36.          }
  37.   }else if(a==6)
  38.   {
  39.          goto checkout;
  40.   }else
  41.   {     
  42.          cout<<"輸入錯誤!"<<endl;
  43.          system ("pause");
  44.          goto re;
  45.   }
  46.   checkout:
  47.   cout<<"[購物清單]"<<endl;
  48.   cout<<"=========================="<<endl;
  49.   for(int i=0; i<=6; i++)
  50.   {
  51.         if(qty[i]!=0)   
  52.             cout<<n[i]<<"\t"<<p[i]<<"元 * "<<qty[i]<<"個"<<endl;      
  53.   }
  54.   cout<<"=========================="<<endl;
  55.   cout<<"總共 "<<sum<<"元!"<<endl<<endl;
  56.   cout<<"(1)正確無誤(2)重新輸入"<<endl;
  57.   cin>>option;
  58.   if(option==1)
  59.     {
  60.          goto pay;
  61.     }else if(option==2)
  62.     {
  63.          system("cls");      
  64.          goto start;  
  65.     }else
  66.     {
  67.          cout<<"輸入錯誤!"<<endl;
  68.          goto start;
  69.     }
  70.     pay:
  71.     cout<<endl<<"請付帳: ";
  72.     cin>>pay;
  73.     money=pay-sum;
  74.     if(money==0)
  75.     {
  76.         cout<<"您付的錢剛剛好, 謝謝惠顧!"<<endl;
  77.     }else if(money<0)
  78.     {
  79.         cout<<"您付的錢不夠, 還差"<<-money<<"元!"<<endl;
  80.         goto pay;   
  81.     }else
  82.     {
  83.         cout<<endl<<"找您"<<money<<"元!"<<endl;
  84.         if(money>=500)
  85.         {
  86.             cout<<"五百元鈔票"<<money/500<<"張"<<endl;
  87.             money%=500;                 
  88.         }
  89.         if(money>=100)
  90.         {
  91.             cout<<"一百元鈔票"<<money/100<<"張"<<endl;
  92.             money%=100;              
  93.         }
  94.         if(money>=50)
  95.         {
  96.             cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
  97.             money%=50;              
  98.         }
  99.         if(money>=10)
  100.         {
  101.             cout<<"十元硬幣"<<money/10<<"枚"<<endl;
  102.             money%=10;              
  103.         }
  104.         if(money>=5)
  105.         {
  106.             cout<<"五元硬幣"<<money/5<<"枚"<<endl;
  107.             money%=5;              
  108.         }
  109.         if(money>=1)
  110.         {
  111.             cout<<"一元硬幣"<<money<<"枚"<<endl;              
  112.         }      
  113.     }
  114.     cout<<endl;
  115.   system ("pause");   
  116.   return 0;   
  117. }
複製代碼

TOP

返回列表