Board logo

標題: [作業] 購物系統 [四] [打印本頁]

作者: tonyh    時間: 2015-3-21 11:50     標題: [作業] 購物系統 [四]

本帖最後由 tonyh 於 2015-3-28 12:06 編輯

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

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

作者: 李知易    時間: 2015-3-21 12:05

此帖僅作者可見
作者: 洪振庭    時間: 2015-3-28 11:36

此帖僅作者可見
作者: 梁和雋    時間: 2015-3-28 11:43

此帖僅作者可見
作者: 謝瀞儀    時間: 2015-3-28 12:05

此帖僅作者可見
作者: 謝瀞儀    時間: 2015-3-28 16:13

此帖僅作者可見




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2