標題:
智慧找零系統 (二)
[打印本頁]
作者:
方浩葦
時間:
2024-4-19 11:31
標題:
智慧找零系統 (二)
設計一個更聰明的智慧找零系統, 包括客人付的錢
不足
,
剛好
, 或
任何
可能發生的狀況.
本帖隱藏的內容需要回復才可以瀏覽
作者:
鄭豊翰
時間:
2024-5-4 15:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b,c;
cout<<"請輸入商品價格:";
cin>>a;
cout<<"你付多少:";
cin>>b;
c=b-a;
if(c<0){
cout<<"你少付"<<-(b-a)<<"元"<<endl;
}
else if (c==0){
cout<<"付款金額剛好,無需找錢。"<<endl;
}
else {
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://seed.istak.org.tw/)
Powered by Discuz! 7.2