返回列表 發帖

[隨堂測驗] 購物系統 (四)

本帖最後由 葉桔良 於 2022-7-9 17:22 編輯

新增 "1-正確無誤 2-重新選購" 的選單,
讓使用者在準備結帳時還能反悔,譬如錢帶不夠。
確定結帳後,銜接自動找零系統。

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     system("cls");
  8.     int qty[]={0,0,0,0,0,0,0};
  9.     string name[]={"遙控汽車","飛機模型","足球    ","拼圖    ","玩具槍  ","可愛玩偶","籃球    "};
  10.     int price[]={450,550,325,200,660,150,380};
  11.     cout<<"☆★☆智能玩具店☆★☆"<<endl<<endl;
  12.     cout<<"[商品價目表]"<<endl;
  13.     for(int i=0; i<7; i++)
  14.          cout<<"("<<i+1<<")"<<name[i]<<"\t"<<price[i]<<"元"<<endl;
  15.    
  16.     cout<<"(8)結帳"<<endl<<endl;
  17.    
  18.     int p,q,sum;
  19.     cout<<"請輸入商品代碼: ";
  20.     cin>>p;
  21.    
  22.     while(p!=8){
  23.         cout<<"數量: ";
  24.         cin>>q;
  25.         sum += price[p-1] * q;
  26.         qty[p-1] += q;
  27.         cout<<"請輸入商品代碼: ";
  28.         cin>>p;         
  29.     }
  30.    
  31.     cout<<endl<<"[購物清單]"<<endl;
  32.     cout<<"-----------------------------"<<endl;
  33.     for(int i=0; i<7; i++)
  34.         if(qty[i]!=0)
  35.             cout<<name[i]<<"\t"<<price[i]<<"元 * "<<qty[i]<<"個"<<endl;
  36.     cout<<"-----------------------------"<<endl;
  37.    
  38.     cout<<endl<<"總共"<<sum<<"元!"<<endl;
  39.    
  40.     cout<<"1-正確無誤 2-重新選購 ";
  41.     int option,pay,money;
  42.     cin>>option;
  43.     if(option==2)
  44.         goto re;
  45.     if(option==1){
  46.         re2:
  47.         cout<<endl<<"請付帳: ";
  48.         cin>>pay;
  49.         money=pay-sum;
  50.         if(money==0)
  51.             cout<<endl<<"剛剛好!銘謝惠顧!"<<endl<<endl;
  52.         else if(money<0)
  53.         {
  54.             cout<<"您付的錢不夠, 還差"<<-money<<"元!"<<endl;  
  55.             goto re2;
  56.         }else
  57.         {
  58.             cout<<endl<<"找您"<<money<<"元!"<<endl;
  59.             if(money>=500)
  60.             {
  61.                 cout<<"五百元鈔票"<<money/500<<"張"<<endl;
  62.                 money%=500;
  63.             }
  64.             if(money>=100)
  65.             {
  66.                 cout<<"一百元鈔票"<<money/100<<"張"<<endl;
  67.                 money%=100;
  68.             }
  69.             if(money>=50)
  70.             {
  71.                 cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
  72.                 money%=50;
  73.             }
  74.             if(money>=10)
  75.             {
  76.                 cout<<"十元硬幣"<<money/10<<"枚"<<endl;
  77.                 money%=10;
  78.             }
  79.             if(money>=5)
  80.             {
  81.                 cout<<"五元硬幣"<<money/5<<"枚"<<endl;
  82.                 money%=5;
  83.             }
  84.             if(money>=1)
  85.                 cout<<"一元硬幣"<<money<<"枚"<<endl;   
  86.         }   
  87.     }
  88.     system("pause");
  89.     return 0;
  90. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表