返回列表 發帖
  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;
  21.     cout<<"優惠方案:消費滿一千元,送足球一顆!!"<<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=sum+price[p-1]*q;
  32.             qty[p-1]+=q;
  33.             goto re;
  34.         }
  35.         else
  36.         {
  37.             cout<<"輸入錯誤!"<<endl;
  38.             goto re;  
  39.         }
  40.      }
  41.      else if(p==8)
  42.      {
  43.          goto checkout;      
  44.      }
  45.      else
  46.      {
  47.          cout<<"輸入錯誤!"<<endl;
  48.          goto re;     
  49.      }
  50.     checkout:
  51.     cout<<endl<<"[購物清單]";  
  52.     cout<<endl<<"=========================="<<endl;
  53.     for(int i=0; i<=6; i++)
  54.     {
  55.         if(qty[i]!=0)
  56.            cout<<name[i]<<"\t"<<price[i]<<"元 X "<<qty[i]<<"個"<<endl;
  57.     }
  58.     cout<<"=========================="<<endl;
  59.     cout<<endl<<"總共"<<sum<<"元!"<<endl<<endl;
  60.     if(sum>=1000)
  61.        cout<<"由於您消費一千元以上,送足球一顆"<<endl<<endl;
  62.     cout<<"1-正確無誤   2-重新選購"<<endl;
  63.     cin>>option;
  64.     if(option==1)
  65.     {
  66.          goto pay;
  67.     }else if(option==2)
  68.     {
  69.          system("cls");   
  70.          goto start;  
  71.     }else
  72.     {
  73.          cout<<"輸入錯誤!"<<endl;
  74.          goto start;
  75.     }
  76.     pay:
  77.     cout<<endl<<"請付帳: ";
  78.     cin>>pay;
  79.     money=pay-sum;
  80.     if(money==0)
  81.     {
  82.         cout<<"您付的錢剛剛好, 謝謝惠顧!"<<endl;
  83.     }else if(money<0)
  84.     {
  85.         cout<<"您付的錢不夠, 還差"<<-money<<"元!"<<endl;
  86.         goto pay;   
  87.     }else
  88.     {
  89.         cout<<endl<<"找您"<<money<<"元!"<<endl<<endl;
  90.         if(money>=500)
  91.         {
  92.             cout<<"五百元鈔票"<<money/500<<"張"<<endl;
  93.             money%=500;           
  94.         }
  95.         if(money>=100)
  96.         {
  97.             cout<<"一百元鈔票"<<money/100<<"張"<<endl;
  98.             money%=100;              
  99.         }
  100.         if(money>=50)
  101.         {
  102.             cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
  103.             money%=50;              
  104.         }
  105.         if(money>=10)
  106.         {
  107.             cout<<"十元硬幣"<<money/10<<"枚"<<endl;
  108.             money%=10;              
  109.         }
  110.         if(money>=5)
  111.         {
  112.             cout<<"五元硬幣"<<money/5<<"枚"<<endl;
  113.             money%=5;              
  114.         }
  115.         if(money>=1)
  116.         {
  117.             cout<<"一元硬幣"<<money<<"枚"<<endl;              
  118.         }      
  119.     }
  120.     cout<<endl;
  121.     system("pause");   
  122.     return 0;
  123. }
複製代碼

TOP

返回列表