本帖最後由 陳品肇 於 2019-2-16 15:08 編輯
新增 "購物清單" 功能, 使結帳時能不只計算出價錢, 還能列出細目.
參考執行畫面如下:
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int p,q,sum=0; //p放商品代碼 q放商品數量 sum 金額加總的值
- cout<<"☆★☆智能玩具店☆★☆"<<endl;
- cout<<endl;
- cout<<"[商品價目表]"<<endl;
- string a[7]= {"遙控器車",
- "飛機模型",
- "足球 ",
- "拼圖 ",
- "玩具槍 ",
- "可愛玩偶",
- "籃球 "};
- int price[7]={450,550,325,200,660,150,380};
- int tmpQty[7]={0,0,0,0,0,0,0}; // 暫存購買商品的個數
-
-
- for(int i=0;i<7;i++)
- {
- cout<<"("<<i+1<<")"<<a[i]<<"\t"<<price[i]<<"元"<<endl;
- }
- cout<<"(8)結帳"<<endl;
- cout<<endl;
-
- re:
- cout<<"請輸入商品代碼:";
- cin>>p;
- if(p>=1 && p<=7) //判斷選擇正確的商品
- {
- cout<<"數量:";
- cin>>q; //輸入數量
- if(q>0) //數量大於0
- {
- sum = sum + price[p-1]*q; //單價*購買數量
- tmpQty[p-1] = tmpQty[p-1] + q; //計算各別商品總數量
- goto re;
- }else
- {
- cout<<"您輸入的數量有誤!!"<<endl;
- goto re;
- }
-
- }else if(p==8) //結帳
- {
- goto checkout;
- }else
- {
- cout<<"您輸入的代碼有誤"<<endl;
- goto re;
- }
-
- checkout:
- cout<<"[購物清單]"<<endl;
- cout<<"-----------------------------"<<endl;
- for(int i=0;i<7;i++)
- {
- if(tmpQty[i] != 0 ) //過濾清單是0 個的商品 != 不等於 驚嘆號指的是反向結果
- {
- cout<<a[i]<<"\t"<<price[i]<<"元 * "<<tmpQty[i]<<" 個"<<endl;
- }
- }
-
- cout<<"-----------------------------"<<endl<<endl;
- cout<<"總共"<<sum<<"元"<<endl;
-
-
- system("pause");
- return 0;
- }
複製代碼 |