標題:
[作業] 智慧找零系統 (一)
[打印本頁]
作者:
方浩葦
時間:
2024-4-19 11:29
標題:
[作業] 智慧找零系統 (一)
設計一智慧找零系統, 使用者可輸入商品價格與客人付了多少錢, 電腦回應需找多少錢, 並顯示細節.
譬如: 若有一230元的商品, 客人付了1000元, 則電腦回應
總共需找客人770元
500元鈔票1張
100元鈔票2張
50元硬幣1枚
10元硬幣2枚
本帖隱藏的內容需要回復才可以瀏覽
作者:
鄭豊翰
時間:
2024-5-4 15:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b,c;
cout<<"請輸入商品價格:";
cin>>a;
cout<<"你付多少:";
cin>>b;
c=b-a;
cout<<"總共需找客人:"<<c<<"元"<<endl;
if(c>500){
cout<<"500元鈔票"<<c/500<<"張"<<endl;
}
c -= c/500*500;
if(c>100){
cout<<"100元鈔票"<<c/100<<"張"<<endl;
}
c -= c/100*100;
if(c>50){
cout<<"50元硬幣"<<c/50<<"枚"<<endl;
}
c -= c/50*50;
if(c>10){
cout<<"10元硬幣"<<c/10<<"枚"<<endl;
}
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2