返回列表 發帖

[作業] 購物系統 [四]

本帖最後由 tonyh 於 2014-2-22 16:48 編輯

新增 "1-正確無誤 2-重新選購" 的選單,
讓使用者在準備結帳時還能反悔, 譬如錢帶不夠.
確定結帳後, 銜接自動找零系統.
  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]={450,550,325,200,660,150,380};     //商品單價
  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+=price[p-1]*q;   //sum=sum+price[p-1]*q
  31.             qty[p-1]+=q;         //qty[p-1]=qty[p-1]+q
  32.             goto re;
  33.         }else
  34.         {
  35.             cout<<"輸入錯誤!"<<endl;
  36.             goto re;  
  37.         }
  38.     }else if(p==8)
  39.     {
  40.         goto checkout;      
  41.     }else
  42.     {
  43.         cout<<"輸入錯誤!"<<endl;
  44.         goto re;     
  45.     }
  46.     checkout:
  47.     cout<<endl<<"[購物清單]"<<endl;
  48.     cout<<"-----------------------------"<<endl;
  49.     for(int i=0; i<=6; i++)
  50.     {
  51.         if(qty[i]!=0)    // != 不等於
  52.             cout<<name[i]<<"\t"<<price[i]<<"元 * "<<qty[i]<<"個"<<endl;      
  53.     }
  54.     cout<<"-----------------------------"<<endl;
  55.     cout<<"總共 "<<sum<<"元!"<<endl<<endl;
  56.     cout<<"1-正確無誤 2-重新選購  ";
  57.     cin>>option;
  58.     if(option==1)
  59.     {
  60.          goto pay;
  61.     }else if(option==2)
  62.     {
  63.          system("cls");      //清畫面
  64.          goto start;  
  65.     }else
  66.     {
  67.          cout<<"輸入錯誤!"<<endl;
  68.          goto start;
  69.     }
  70.     pay:
  71.     cout<<endl<<"請付帳: ";
  72.     cin>>pay;
  73.     money=pay-sum;
  74.     if(money==0)
  75.     {
  76.         cout<<"您付的錢剛剛好, 謝謝惠顧!"<<endl;
  77.     }else if(money<0)
  78.     {
  79.         cout<<"您付的錢不夠, 還差"<<-money<<"元!"<<endl;
  80.         goto pay;   
  81.     }else
  82.     {
  83.         cout<<endl<<"找您"<<money<<"元!"<<endl;
  84.         if(money>=500)
  85.         {
  86.             cout<<"五百元鈔票"<<money/500<<"張"<<endl;
  87.             money%=500;    //money=money%500;              
  88.         }
  89.         if(money>=100)
  90.         {
  91.             cout<<"一百元鈔票"<<money/100<<"張"<<endl;
  92.             money%=100;              
  93.         }
  94.         if(money>=50)
  95.         {
  96.             cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
  97.             money%=50;              
  98.         }
  99.         if(money>=10)
  100.         {
  101.             cout<<"十元硬幣"<<money/10<<"枚"<<endl;
  102.             money%=10;              
  103.         }
  104.         if(money>=5)
  105.         {
  106.             cout<<"五元硬幣"<<money/5<<"枚"<<endl;
  107.             money%=5;              
  108.         }
  109.         if(money>=1)
  110.         {
  111.             cout<<"一元硬幣"<<money<<"枚"<<endl;              
  112.         }      
  113.     }
  114.     cout<<endl;
  115.     system("pause");         //暫停
  116.     return 0;
  117. }
複製代碼

返回列表