返回列表 發帖
  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]={5000,6500,7000,6550,8888,3000,7500,};
  15.     int qty[7]={0,0,0,0,0,0,0};
  16.     int p,q,sum=0,option,pay,money,a;
  17.     cout<<"***貴死人玩具店***"<<endl<<endl;
  18.     cout<<"[商品價目表]"<<endl;
  19.     for(int i=0;i<=6;i++)
  20.     {
  21.         cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;   
  22.     }
  23.     cout<<"(8)結帳"<<endl<<endl;
  24.     cout<<"[優惠方案]消費滿一萬享9折優惠!!!"<<endl<<endl;
  25.     re:
  26.     cout<<"請輸入商品代碼:"<<endl;
  27.     cin>>p;
  28.     if(p>=1 && p<=7)
  29.     {   
  30.          cout<<"請輸入數量:"<<endl;
  31.          cin>>q;
  32.          if(q>0)
  33.          {
  34.              sum+=price[p-1]*q;
  35.              qty[p-1]+=q;
  36.              goto re;
  37.          }
  38.          else  
  39.          {
  40.              cout<<"輸入錯誤!"<<endl;
  41.              goto re;   
  42.          }
  43.     }
  44.     else if(p==8)
  45.     {
  46.          goto checkout;   
  47.     }
  48.     else
  49.     {
  50.          cout<<"輸入錯誤!"<<endl;
  51.          goto re;
  52.     }
  53.     checkout:
  54.     cout<<"[購物清單]"<<endl;
  55.     cout<<"==========================="<<endl;
  56.     for(int i=0;i<=6;i++)
  57.     {
  58.         if(qty[i]!=0)
  59.             cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元*"<<qty[i]<<"個"<<endl;   
  60.     }
  61.     cout<<"==========================="<<endl;         
  62.     cout<<endl<<"總共"<<sum<<"元!"<<endl<<endl;
  63.     if(sum<10000)
  64.     {
  65.         cout<<"您還差"<<10000-sum<<"元就可享9折優惠,需重新選購嗎?"<<endl;
  66.         cout<<"1-要 2-不用了,謝謝"<<endl;
  67.         cin>>a;
  68.         if(a==1)
  69.         {
  70.             system("cls");
  71.             goto start;   
  72.         }
  73.     }
  74.     else if(sum>=10000)
  75.     {
  76.         cout<<"由於消費滿一萬,所以可享9折優惠"<<endl;
  77.         cout<<"您只要付"<<sum*0.9<<"元!,省下了"<<sum*0.1<<"元喔!!"<<endl;
  78.         sum*=0.9;              
  79.     }               
  80.     cout<<endl<<"1-正確無誤 2-重新選購"<<endl;
  81.     cin>>option;
  82.     if(option==1)
  83.     {
  84.         goto pay;
  85.     }
  86.     else if(option==2)
  87.     {
  88.         system("cls");
  89.         goto start;     
  90.     }
  91.     else
  92.     {
  93.         cout<<"輸入錯誤!"<<endl;
  94.         goto start;   
  95.     }
  96.     pay:
  97.     cout<<"請付帳:";
  98.     cin>>pay;
  99.     money=pay-sum;
  100.      if(money<0)
  101.     {
  102.         cout<<"您付的錢還不夠,還差"<<-money<<"元!"<<endl;
  103.         goto pay;        
  104.     }
  105.     else if(money==0)
  106.     {
  107.         cout<<"你付的錢剛剛好,請慢走"<<endl;
  108.     }
  109.     else         
  110.     {
  111.         cout<<"找您"<<money<<"元!"<<endl;
  112.             if(money>=500)
  113.             {
  114.                 cout<<"500元鈔票"<<money/500<<"張"<<endl;
  115.                 money%=500;
  116.             }
  117.             if(money>=100)
  118.             {
  119.                 cout<<"100元鈔票"<<money/100<<"張"<<endl;
  120.                 money%=100;
  121.             }
  122.             if(money>=50)
  123.             {
  124.                 cout<<"50元硬幣"<<money/50<<"枚"<<endl;
  125.                 money%=50;
  126.             }
  127.             if(money>=10)
  128.             {
  129.                 cout<<"10元硬幣"<<money/10<<"枚"<<endl;
  130.                 money%=10;
  131.             }
  132.             if(money>=5)
  133.             {
  134.                 cout<<"5元硬幣"<<money/5<<"枚"<<endl;
  135.                 money%=5;
  136.             }
  137.             if(money>=1)
  138.             {
  139.                 cout<<"1元硬幣"<<money<<"枚"<<endl;
  140.                 money=money%1;
  141.             }
  142.     }                                 
  143.     system("pause");
  144.     return 0;
  145. }
複製代碼

TOP

返回列表