返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     start:
  7.     string name[7]={"黃金玫瑰",
  8.                     "食人花  ",
  9.                     "幽靈草  ",
  10.                     "瘋樹    ",
  11.                     "魔鬼藤蔓",
  12.                     "含兇草  ",
  13.                     "搖頭樹  "};
  14.     int price[7]={7099,1598,2960,1800,4050,3999,6540};
  15.     int qty[7]={0,0,0,0,0,0,0};
  16.     int p, q, sum=0;
  17.     int option;
  18.     int pay, money;
  19.     cout<<"***  special植物專賣店  ***"<<endl<<endl;
  20.     for(int i=0; i<=6; i++)
  21.     {
  22.       cout<<"<"<<i+1<<">"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
  23.     }
  24.     cout<<"<8>結帳"<<endl<<endl<<endl;
  25.     re:
  26.     cout<<"請輸入商品代碼: "<<endl;
  27.     cin>>p;
  28.     if(p>=1 && p<=7)
  29.     {
  30.         cout<<"數量: ";
  31.         cin>>q;
  32.         if(q>0)
  33.         {
  34.             sum=sum+price[p-1]*q;
  35.             qty[p-1]=qty[p-1]+q;
  36.             goto re;
  37.         }
  38.     }
  39.     else if(p==8)
  40.     {
  41.         goto checkout;      
  42.     }
  43.     else
  44.     {
  45.         cout<<"輸入錯誤!"<<endl;
  46.         goto re;     
  47.     }
  48.     checkout:
  49.     cout<<endl<<"購物清單"<<endl;
  50.     cout<<"------------------"<<endl;
  51.     for(int i=0; i<=6; i++)
  52.     {
  53.       if(qty[i]!=0)      
  54.       cout<<name[i]<<"\t"<<price[i]<<" * "<<qty[i]<<"個"<<endl;
  55.     }
  56.     cout<<"------------------"<<endl;
  57.     cout<<endl<<"總共"<<sum<<"元!"<<endl<<endl;
  58.     cout<<"1-正確無誤 2-重新選購  ";
  59.     cin>>option;
  60.     if(option==1)
  61.     {
  62.          goto pay;
  63.     }else if(option==2)
  64.     {
  65.          system("cls");      
  66.          goto start;  
  67.     }else
  68.     {
  69.          cout<<"輸入錯誤!"<<endl;
  70.          goto start;
  71.     }
  72.     pay:
  73.     cout<<endl<<"請付帳: ";
  74.     cin>>pay;
  75.     money=pay-sum;
  76.     if(money==0)
  77.     {
  78.         cout<<"您付的錢剛剛好, 謝謝惠顧!"<<endl;
  79.     }else if(money<0)
  80.     {
  81.         cout<<"您付的錢不夠, 還差"<<-money<<"元!"<<endl;
  82.         goto pay;   
  83.     }else
  84.     {
  85.         cout<<endl<<"找您"<<money<<"元!"<<endl;
  86.         if(money>=500)
  87.         {
  88.             cout<<"五百元鈔票"<<money/500<<"張"<<endl;
  89.             money%=500;                 
  90.         }
  91.         if(money>=100)
  92.         {
  93.             cout<<"一百元鈔票"<<money/100<<"張"<<endl;
  94.             money%=100;              
  95.         }
  96.         if(money>=50)
  97.         {
  98.             cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
  99.             money%=50;              
  100.         }
  101.         if(money>=10)
  102.         {
  103.             cout<<"十元硬幣"<<money/10<<"枚"<<endl;
  104.             money%=10;              
  105.         }
  106.         if(money>=5)
  107.         {
  108.             cout<<"五元硬幣"<<money/5<<"枚"<<endl;
  109.             money%=5;              
  110.         }
  111.         if(money>=1)
  112.         {
  113.             cout<<"一元硬幣"<<money<<"枚"<<endl;              
  114.         }      
  115.     }
  116.     cout<<endl;
  117.     system("pause");         
  118.     return 0;
  119. }
複製代碼

TOP

返回列表