本帖最後由 李泳霖 於 2022-1-7 18:54 編輯
設計一智慧找零系統, 使用者可輸入商品價格與客人付了多少錢, 電腦回應需找多少錢, 並顯示細節.
譬如: 若有一230元的商品, 客人付了1000元, 則電腦回應
總共需找客人770元
500元鈔票1張
100元鈔票2張
50元硬幣1枚
10元硬幣2枚- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a,b,c;
- cout<<"*** 智慧找零系統 ***"<<endl<<endl;
- cout<<"請輸入商品價格:";
- cin>>a;
- cout<<"客人付了多少錢:";
- cin>>b;
- c=b-a;
- cout<<"須找客人"<<c<<"元"<<endl<<endl;
- system("pause");
-
- return 0;
-
- }
複製代碼 |