返回列表 發帖
本帖最後由 張峻瑋 於 2014-2-22 17:06 編輯
  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]={50000,6500000,70000,655000,999999,300000,750000,};
  15.     int qty[7]={0,0,0,0,0,0,0};
  16.     int p,q,sum=0,option,pay,money;
  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;
  24.     re:
  25.     cout<<"請輸入商品代碼:"<<endl;
  26.     cin>>p;
  27.     if(p>=1 && p<=7)
  28.     {   
  29.          cout<<"請輸入數量:"<<endl;
  30.          cin>>q;
  31.          if(q>0)
  32.          {
  33.              sum+=price[p-1]*q;
  34.              qty[p-1]+=q;
  35.              goto re;
  36.          }
  37.          else  
  38.          {
  39.              cout<<"輸入錯誤!"<<endl;
  40.              goto re;   
  41.          }
  42.     }
  43.     else if(p==8)
  44.     {
  45.          goto checkout;   
  46.     }
  47.     else
  48.     {
  49.          cout<<"輸入錯誤!"<<endl;
  50.          goto re;
  51.     }
  52.     checkout:
  53.     cout<<"[購物清單]"<<endl;
  54.     cout<<"==========================="<<endl;
  55.     for(int i=0;i<=6;i++)
  56.     {
  57.         if(qty[i]!=0)
  58.             cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元*"<<qty[i]<<"個"<<endl;   
  59.     }
  60.     cout<<"==========================="<<endl;         
  61.     cout<<endl<<"總共"<<sum<<"元!"<<endl<<endl;
  62.     cout<<"1-正確無誤 2-重新選購"<<endl;
  63.     cin>>option;
  64.     if(option==1)
  65.     {
  66.         goto pay;
  67.     }
  68.     else if(option==2)
  69.     {
  70.         system("cls");
  71.         goto start;     
  72.     }
  73.     else
  74.     {
  75.         cout<<"輸入錯誤!"<<endl;
  76.         goto start;   
  77.     }
  78.     pay:
  79.     cout<<"請付帳:";
  80.     cin>>pay;
  81.     money=pay-sum;
  82.      if(money<0)
  83.     {
  84.         cout<<"您付的錢還不夠,還差"<<-money<<"元!"<<endl;
  85.         goto pay;        
  86.     }
  87.     else if(money==0)
  88.     {
  89.         cout<<"你付的錢剛剛好,請慢走"<<endl;
  90.     }
  91.     else         
  92.     {
  93.         cout<<"找您"<<money<<"元!"<<endl;
  94.             if(money>=500)
  95.             {
  96.                 cout<<"500元鈔票"<<money/500<<"張"<<endl;
  97.                 money%=500;
  98.             }
  99.             if(money>=100)
  100.             {
  101.                 cout<<"100元鈔票"<<money/100<<"張"<<endl;
  102.                 money%=100;
  103.             }
  104.             if(money>=50)
  105.             {
  106.                 cout<<"50元硬幣"<<money/50<<"枚"<<endl;
  107.                 money%=50;
  108.             }
  109.             if(money>=10)
  110.             {
  111.                 cout<<"10元硬幣"<<money/10<<"枚"<<endl;
  112.                 money%=10;
  113.             }
  114.             if(money>=5)
  115.             {
  116.                 cout<<"5元硬幣"<<money/5<<"枚"<<endl;
  117.                 money%=5;
  118.             }
  119.             if(money>=1)
  120.             {
  121.                 cout<<"1元硬幣"<<money<<"枚"<<endl;
  122.                 money=money%1;
  123.             }
  124.     }                                 
  125.     system("pause");
  126.     return 0;
  127. }
複製代碼

TOP

返回列表