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