標題:
智慧找零系統
[打印本頁]
作者:
tonyh
時間:
2014-11-22 10:48
標題:
智慧找零系統
本帖最後由 tonyh 於 2014-11-22 11:23 編輯
[attach]1066[/attach]
設計一智慧找零系統, 使用者可輸入商品價格與客人付了多少錢, 電腦回應需找多少錢, 並顯示細節.
譬如: 若有一230元的商品, 客人付了1000元, 則電腦回應
總共需找客人770元
500元鈔票1張
100元鈔票2張
50元硬幣1枚
10元硬幣2枚
本帖隱藏的內容需要回復才可以瀏覽
作者:
梁和雋
時間:
2014-11-22 11:30
#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(money>=1000)
{
cout<<"一千元"<<c/1000<<"張"<<endl;
money%=1000;
}
if(money>=500
{
cout<<"五百元"<<c/500"張"<<endl;
money%=500
}
if(money>=100)
{
cout<<"一百元"<<c/100<<"張"<<endl;
money%=100;
}
if(money>=100)
{
cout<<"五十元"<<c/50<"張"<<endl;
money%=100
}
if(money>=50
{
cout<<"五十元"<<c/50<"張"<<endl;
money%=50
}
if(money>=10)
{
cout<<"十元"<<c/10<<"張"<<endl;
money%=10;
}
if(money>=1)
{
cout<<"一"<<c/1<<"張"<<endl;
money%=1;
}
system("pause");
return 0;
}
複製代碼
作者:
李大全
時間:
2014-11-22 11:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int price, pay, money;
cout<<"*** 智慧找零系統 ***"<<endl<<endl;
cout<<"請輸入商品價格: ";
cin>>price;
cout<<"客人付了多少錢: ";
cin>>pay;
money=pay-price;
cout<<endl<<"需找客人"<<money<<"元"<<endl<<endl;
if(money>=1000)
{
cout<<"1000元鈔票"<<money/1000<<"張"<<endl;
money%=1000;
}
if(money>=500)
{
cout<<"五百元鈔票"<<money/500<<"張"<<endl;
money%=500;
}
if(money>=100)
{
cout<<"一百元鈔票"<<money/100<<"張"<<endl;
money%=100;
}
if(money>=50)
{
cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
money%=50;
}
if(money>=10)
{
cout<<"十元硬幣"<<money/10<<"枚"<<endl;
money%=10;
}
if(money>=5)
{
cout<<"五元硬幣"<<money/5<<"枚"<<endl;
money%=5;
}
if(money>=1)
{
cout<<"一元硬幣"<<money<<"枚"<<endl;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2014-11-22 11:33
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int p1,p2,mm;
cout<<"*** 智慧找零機 ***"<<endl<<endl;
cout<<"商品價為:";
cin>>p1;
cout<<"你付了多少?:";
cin>>p2;
mm=p2-p1;
cout<<"須找"<<mm<<"元"<<endl;
if(mm>=500)
{
cout<<"五百元鈔票"<<mm/500<<"張"<<endl;
mm%=500;
}
if(mm>=100)
{
cout<<"一百元鈔票"<<mm/100<<"張"<<endl;
mm%=100;
}
if(mm>=50)
{
cout<<"五十元硬幣"<<mm/50<<"枚"<<endl;
mm%=50;
}
if(mm>=10)
{
cout<<"十元鈔票"<<mm/10<<"枚"<<endl;
mm%=10;
}
if(mm>=5)
{
cout<<"五元鈔票"<<mm/5<<"枚"<<endl;
mm%=5;
}
if(mm>=1)
{
cout<<"一元鈔票"<<mm/1<<"枚"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2014-11-22 11:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int price,pay,money;
cout<<"******智慧找零機器******"<<endl<<endl;
cout<<"請輸入商品價格:";
cin>>price;
cout<<"客人付了多少錢:";
cin>>pay;
money=pay-price;
cout<<endl<<"需找客人"<<money<<"元"<<endl;
if (money>=500)
{
cout<<"五百元鈔票"<<money/500<<"張"<<endl;
money%=500;
}
if (money>=100)
{
cout<<"一百元鈔票"<<money/100<<"張"<<endl;
money%=100;
}
if (money>=50)
{
cout<<"五十元硬幣"<<money/50<<"枚"<<endl;
money%=50;
}
if (money>=10)
{
cout<<"十元硬幣"<<money/10<<"枚"<<endl;
money%=10;
}
if (money>=10)
{
cout<<"一元硬幣"<<money<<"枚"<<endl;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2014-11-28 19:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"$$$腦殘機器找零系統,今天也要來多收你ㄉ淺前優!$$$"<<"\n"<<"\n";
long a,b,c;
cout<<"請蘇錄你花ㄌ多小淺前:";
cin>>a;
cout<<"嗑輪給ㄉ淺前:";
cin>>b;
c=b-a;
cout<<"\n"<<"鬚腳嗑輪多小淺前:"<<c<<"個"<<"\n";
if(c>=2000)
{
cout<<"2000原敲竹槓的票:"<<c/2000<<"個"<<"\n";
c%=2000;
}
if(c>=1000)
{
cout<<"1000原敲竹槓的票:"<<c/1000<<"個"<<"\n";
c%=1000;
}
if(c>=500)
{
cout<<"500原敲竹槓的票:"<<c/500<<"個"<<"\n";
c%=500;
}
if(c>=100)
{
cout<<"100原敲竹槓的票:"<<c/100<<"個"<<"\n";
c%=100;
}
if(c>=50)
{
cout<<"50原ㄉ淺前:"<<c/50<<"個"<<"\n";
c%=50;
}
if(c>=10)
{
cout<<"10原ㄉ淺前:"<<c/10<<"個"<<"\n";
c%=10;
}
if(c>=5)
{
cout<<"5原ㄉ淺前:"<<c/5<<"個"<<"\n";
c%=5;
}
if(c>=1)
{
cout<<"1原ㄉ淺前:"<<c/1<<"個"<<"\n";
c%=1;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2