返回列表 發帖
本帖最後由 施伯叡 於 2014-2-22 17:05 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     start:
  7.     string name[7]={"乒乓球","棒球  ","網球  ","足球  ",
  8.                     "海灘球","躲避球","籃球  "};
  9.     int price[7]={50,70,80,200,150,300,600};
  10.     int qty[7]={0,0,0,0,0,0,0};
  11.     int p,q,sum=0;
  12.     int option;
  13.     int pay,money;
  14.     cout<<"☆★☆ 超帥球店 ☆★☆"<<endl<<endl;
  15.     cout<<"[商品價目表]"<<endl;
  16.     for(int i=0; i<=6; i++)
  17.     {
  18.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;     
  19.     }
  20.     cout<<"(8)結帳"<<endl<<endl;
  21.     re:
  22.     cout<<"請輸入商品代碼: ";
  23.     cin>>p;
  24.     if(p>=1 && p<=7)
  25.     {
  26.         cout<<"數量: ";
  27.         cin>>q;
  28.         if(q>0)
  29.         {
  30.             sum=sum+price[p-1]*q;
  31.             qty[p-1]+=q;
  32.             goto re;
  33.         }
  34.         else
  35.         {
  36.             cout<<"輸入錯誤!"<<endl;
  37.             goto re;  
  38.         }
  39.      }
  40.      else if(p==8)
  41.      {
  42.          goto checkout;      
  43.      }
  44.      else
  45.      {
  46.          cout<<"輸入錯誤!"<<endl;
  47.          goto re;     
  48.      }
  49.     checkout:
  50.     cout<<endl<<"[購物清單]";  
  51.     cout<<endl<<"=========================="<<endl;
  52.     for(int i=0; i<=6; i++)
  53.     {
  54.         if(qty[i]!=0)
  55.            cout<<name[i]<<"\t"<<price[i]<<"元 X "<<qty[i]<<"個"<<endl;
  56.     }
  57.     cout<<"=========================="<<endl;
  58.     cout<<endl<<"總共"<<sum<<"元!"<<endl<<endl;
  59.     cout<<"1-正確無誤   2-重新選購"<<endl;
  60.     cin>>option;
  61.     if(option==1)
  62.     {
  63.          goto pay;
  64.     }else if(option==2)
  65.     {
  66.          system("cls");   
  67.          goto start;  
  68.     }else
  69.     {
  70.          cout<<"輸入錯誤!"<<endl;
  71.          goto start;
  72.     }
  73.     pay:
  74.     cout<<endl<<"請付帳: ";
  75.     cin>>pay;
  76.     money=pay-sum;
  77.     if(money==0)
  78.     {
  79.         cout<<"您付的錢剛剛好, 謝謝惠顧!"<<endl;
  80.     }else if(money<0)
  81.     {
  82.         cout<<"您付的錢不夠, 還差"<<-money<<"元!"<<endl;
  83.         goto pay;   
  84.     }else
  85.     {
  86.         cout<<endl<<"找您"<<money<<"元!"<<endl<<endl;
  87.         if(money>=500)
  88.         {
  89.             cout<<"五百元鈔票"<<money/500<<"張"<<endl;
  90.             money%=500;           
  91.         }
  92.         if(money>=100)
  93.         {
  94.             cout<<"一百元鈔票"<<money/100<<"張"<<endl;
  95.             money%=100;              
  96.         }
  97.         if(money>=50)
  98.         {
  99.             cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
  100.             money%=50;              
  101.         }
  102.         if(money>=10)
  103.         {
  104.             cout<<"十元硬幣"<<money/10<<"枚"<<endl;
  105.             money%=10;              
  106.         }
  107.         if(money>=5)
  108.         {
  109.             cout<<"五元硬幣"<<money/5<<"枚"<<endl;
  110.             money%=5;              
  111.         }
  112.         if(money>=1)
  113.         {
  114.             cout<<"一元硬幣"<<money<<"枚"<<endl;              
  115.         }      
  116.     }
  117.     cout<<endl;
  118.     system("pause");   
  119.     return 0;
  120. }
複製代碼

TOP

返回列表