返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     start:
  7.     string name[7]={"戰地風雲3","戰地風雲4","絕勝時刻9","絕勝時刻10",
  8.                     "極地戰嚎3","末日之戰3","武裝行動3"};                  
  9.     int price[7]={399,599,299,200,499,459,399};     
  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<<"消費滿5000就送<<戰地風雲3重返卡肯>>資料片!!!!!"<<endl;
  16.     cout<<"[商品價目表]"<<endl;
  17.     for(int i=0; i<=6; i++)
  18.      {
  19.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;     
  20.     }
  21.     cout<<"(8)結帳"<<endl<<endl;
  22.     re:
  23.     cout<<"請輸入商品代碼: ";
  24.     cin>>p;
  25.     if(p>=1 && p<=7)
  26.     {
  27.         cout<<"數量: ";
  28.         cin>>q;
  29.         if(q>0)
  30.         {
  31.             sum+=price[p-1]*q;   
  32.             qty[p-1]+=q;        
  33.             goto re;
  34.         }else
  35.         {
  36.             cout<<"輸入錯誤!"<<endl;
  37.             goto re;  
  38.         }
  39.     }else if(p==8)
  40.     {
  41.         goto checkout;      
  42.     }else
  43.     {
  44.         cout<<"輸入錯誤!"<<endl;
  45.         goto re;     
  46.     }
  47.     checkout:
  48.     cout<<endl<<"[購物清單]"<<endl;
  49.     cout<<"======================="<<endl;
  50.     for(int i=0; i<=6; i++)
  51.     {
  52.         if(qty[i]!=0)     
  53.             cout<<name[i]<<"\t"<<price[i]<<"元 * "<<qty[i]<<"個"<<endl;      
  54.     }
  55.     cout<<"======================"<<endl;
  56.     cout<<"總共 "<<sum<<"元!"<<endl<<endl;
  57.     cout<<"1-正確無誤 2-重新選購  ";
  58.     cin>>option;
  59.     if(option==1)
  60.     {
  61.          goto pay;
  62.     }else if(option==2)
  63.     {
  64.          system("cls");      
  65.          goto start;  
  66.     }else
  67.     {
  68.          cout<<"輸入錯誤!"<<endl;
  69.          goto start;
  70.     }
  71.     pay:
  72.     cout<<endl<<"請付帳: ";
  73.     cin>>pay;
  74.     if(pay>=5000)
  75.     {
  76.           cout<<"恭喜!!消費滿5000送<<戰地風雲3重返卡肯>>資料片!";      
  77.     }else
  78.     {
  79.           cout<<"消費未滿5000";
  80.     }
  81.     money=pay-sum;
  82.     if(money==0)
  83.     {
  84.         cout<<"您付的錢剛剛好!"<<endl;
  85.     }else if(money<0)
  86.     {
  87.         cout<<"您付的錢不夠, 還差"<<-money<<"元!"<<endl;
  88.         goto pay;   
  89.     }else
  90.     {
  91.         cout<<endl<<"找您"<<money<<"元!"<<endl;
  92.         if(money>=500)
  93.         {
  94.             cout<<"五百元鈔票"<<money/500<<"張"<<endl;
  95.             money%=500;    //money=money%500;              
  96.         }
  97.         if(money>=100)
  98.         {
  99.             cout<<"一百元鈔票"<<money/100<<"張"<<endl;
  100.             money%=100;              
  101.         }
  102.         if(money>=50)
  103.         {
  104.             cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
  105.             money%=50;              
  106.         }
  107.         if(money>=10)
  108.         {
  109.             cout<<"十元硬幣"<<money/10<<"枚"<<endl;
  110.             money%=10;              
  111.         }
  112.         if(money>=5)
  113.         {
  114.             cout<<"五元硬幣"<<money/5<<"枚"<<endl;
  115.             money%=5;              
  116.         }
  117.         if(money>=1)
  118.         {
  119.             cout<<"一元硬幣"<<money<<"枚"<<endl;              
  120.         }      
  121.     }
  122.     cout<<endl;
  123.     system("pause");         
  124.     return 0;
  125. }
複製代碼

TOP

返回列表