標題:
智慧找零系統
[打印本頁]
作者:
tonyh
時間:
2011-11-12 17:27
標題:
智慧找零系統
本帖最後由 tonyh 於 2011-11-12 17:30 編輯
設計一智慧找零系統, 使用者可輸入商品價格與客人付了多少錢, 電腦回應需找多少錢, 並顯示細節.
譬如: 若有一230元的商品, 客人付了1000元, 則電腦回應
總共需找客人770元
500元鈔票1張
100元鈔票2張
50元硬幣1枚
10元硬幣2枚
#include<iostream>
using namespace std;
int main()
{
int price, money;
cout<<"***智慧找零系統***"<<endl;
cout<<"請輸入商品價格: ";
cin>>price;
cout<<"請輸入客人付了多少錢: ";
cin>>money;
cout<<"總共需找客人"<<money-price<<"元"<<endl;
money=money-price;
int a, b, c, d, e;
if(money>=500)
{
a=money/500;
money=money%500;
cout<<"500元鈔票"<<a<<"張"<<endl;
}
if(money>=100)
{
b=money/100;
money=money%100;
cout<<"100元鈔票"<<b<<"張"<<endl;
}
if(money>=50)
{
c=money/50;
money=money%50;
cout<<"50元硬幣"<<c<<"枚"<<endl;
}
if(money>=10)
{
d=money/10;
money=money%10;
cout<<"10元硬幣"<<d<<"枚"<<endl;
}
if(money>=5)
{
e=money/5;
money=money%5;
cout<<"5元硬幣"<<e<<"枚"<<endl;
}
if(money>=1)
{
cout<<"1元硬幣"<<money<<"枚"<<endl;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
t3742238
時間:
2011-11-12 17:27
#include <iostream>
using namespace std;
int main()
{
int price, money;
cout<<"***智慧找零系統***"<<endl;
cout<<"請輸入商品價格:"<<endl;
cin>>price;
cout<<"請輸入客人附的錢"<<endl;
cin>>money;
cout<<"需要找"<<money-price<<"元"<<endl;
money=money-price;
int a,b,c,d,e;
if(money>=500)
{
a=money/500;
money=money%500;
cout<<"500 元鈔票"<<a<<"張"<<endl;
}
if(money>=100)
{
a=money/100;
money=money%100;
cout<<"100 元鈔票"<<b<<"張"<<endl;
}
if(money>=50)
{
a=money/50;
money=money%50;
cout<<"50 元鈔票"<<c<<"枚"<<endl;
}
if(money>=10)
{
a=money/10;
money=money%10;
cout<<"10 元鈔票"<<d<<"枚"<<endl;
}
if(money>=1)
{
a=money/1;
money=money%1;
cout<<"1 元鈔票"<<money<<"枚"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2011-11-12 17:31
#include<iostream>
using namespace std;
int main()
{
int price, money;
cout<<"***智慧找零系統***"<<endl;
cout<<"請輸入商品價格:";
cin>>price;
cout<<"請輸入客人付了多少錢";
cin>>money;
cout<<"需要找客人"<<money-price<<"元"<<endl;
money=money-price;
int a,b,c,d,e;
if(money>=500)
{
a=money/500;
money=money%500;
cout<<"500元鈔票"<<a<<"張"<<endl;
}
if(money>=100)
{
b=money/100;
money=money%100;
cout<<"100元鈔票"<<b<<"張"<<endl;
}
if(money>=50)
{
c=money/50;
money=money%50;
cout<<"50元硬幣"<<c<<"枚"<<endl;
}
if(money>=10)
{
d=money/10;
money=money%10;
cout<<"10元硬幣"<<d<<"枚"<<endl;
}
if(money>=5)
{
e=money/5;
money=money%5;
cout<<"5元硬幣"<<e<<"枚"<<endl;
}
if(money>=1)
{
cout<<"1元硬幣"<<money<<"枚"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
許逸瑋
時間:
2011-11-12 17:32
#include <iostream>
using namespace std;
int main()
{
int price, money;
cout<<"$$$$MONEY-COME找零系統$$$$"<<endl;
cout<<"請輸入商品價格:"<<endl;
cin>>price;
cout<<"請輸入給予金額: "<<endl;
cin>>money;
cout<<"找零"<<money-price<<"元"<<endl;
money=money-price;
int a,b,c,d,e;
if(money>=500)
{
a=money/500;
money=money%500;
cout<<"500 元鈔票"<<a<<"張"<<endl;
}
if(money>=100)
{
a=money/100;
money=money%100;
cout<<"100 元鈔票"<<b<<"張"<<endl;
}
if(money>=50)
{
a=money/50;
money=money%50;
cout<<"50 元鈔票"<<c<<"枚"<<endl;
}
if(money>=10)
{
a=money/10;
money=money%10;
cout<<"10 元鈔票"<<d<<"枚"<<endl;
}
if(money>=1)
{
a=money/1;
money=money%1;
cout<<"1 元鈔票"<<money<<"枚"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2011-11-12 17:49
using namespace std;
int main()
{
int prize,money;
cout<<"請輸入價格:";
cin>>prize;
cout<<"請輸入支付金額:";
cin>>money;
cout<<"需要找"<<money-prize<<"元";
money=money-prize;
int a,b,c,d,e;
if(money>=500)
{a=money/500;
money=money%500;
cout<<"500元鈔票"<<a<<"張";
}
if(money>=100)
{b=money/100;
money=money%100;
cout<<"100元鈔票"<<b<<"張";}
if(money>=50)
{c=money/50;
money=money%50;
cout<<"50元硬幣"<<c<<"枚";}
if(money>=10)
{d=money/10;
money=money%10;
cout<<"10元硬幣"<<d<<"枚";}
if(money>=5)
{e=money/5;
money=money%5;
cout<<"5元硬幣"<<e<<"枚";}
if(money>=1)
{cout<<"1元硬幣"<<money<<"枚";}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2011-11-19 14:46
#include <iostream>
using namespace std;
int main()
{
int price,money;
cout<<"***智慧找零機***"<<endl;
cout<<"請輸入商品價格:";
cin>>price;
cout<<"請輸入客人付了多少錢:";
cin>>money;
cout<<"需找客人:"<<money-price<<"元"<<endl;
money=money-price;
int a,b,c,d,e;
if(money>=500)
{
a=money/500;
money=money%500;
cout<<"500元鈔票"<<a<<"張"<<endl;
}if(money>=100)
{
b=money/100;
money=money%100;
cout<<"100鈔票"<<b<<"張"<<endl;
}if(money>=50)
{
c=money/50;
money=money%50;
cout<<"50鈔票"<<c<<"張"<<endl;
}if(money>=10)
{
d=money/10;
money=money%10;
cout<<"10硬幣"<<d<<"枚"<<endl;
}if(money>=5)
{
e=money/5;
money=money%5;
cout<<"5硬幣"<<e<<"枚"<<endl;
}if(money>=1)
{
cout<<"1元硬幣"<<money<<"枚"<<endl;
}
if(price>money)
{
cout<<"錢不夠啦!"<<endl;
}
else if(price=money)
{
cout<<"謝謝惠顧 下次再來"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2011-11-19 15:42
#include<iostream>
using namespace std;
int main()
{
int price,money;
cout<<"$$自動聰明找零系統$$";
cout<<"請輸入商品價格";
cin>>price;
cout<<"請輸入客人付了多少錢: ";
cin>>money;
cout<<"總共需找客人"<<money-price<<"元"<<endl;
money=money-price;
int a,b,c,d,e;
if(money>=500)
{
a=money/500;
money=money%500;
cout<<"500元鈔票"<<a<<"張"<<endl;
}
if(money>=100)
{
b=money/100;
money=money%100;
cout<<"100元鈔票"<<b<<"張"<<endl;
}
if(money>=50)
{
c=money/50;
money=money%50;
cout<<"50元硬幣"<<b<<"個"<<endl;
}
if(money>=10)
{
d=money/10;
money=money%10;
cout<<"10元硬幣"<<b<<"個"<<endl;
}
if(money>=5)
{
e=money/5;
money=money%5;
cout<<"5元硬幣"<<b<<"個"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t2364705
時間:
2011-11-19 15:43
#include<iostream>
using namespace std;
int main()
{
int price,money
cout<<"***好玩的聰明的找零系統***";
cout<<"請輸入商品價格";
cin>>price;
cout<<"請輸入客人付了多少錢";
cin>>money;
cout<<"需要找客人的錢"money-price<<"元";
money=money-price;
int a,b,c,d,e;
if(money>=500)
{ a=money/500;
money=money%;
cout<<"需要找客人500元的鈔票"<<a<<"張";
}
if(money>=100)
{
b=money/100;
money=money%100;
cout<<"100元鈔票"<<b<<"張"<<endl;
}
if(money>=50)
{
c=money/50;
money=money%50;
cout<<"50元硬幣"<<c<<"枚"<<endl;
}
if(money>=10)
{
d=money/10;
money=money%10;
cout<<"10元硬幣"<<d<<"枚"<<endl;
}
if(money>=5)
{
e=money/5;
money=money%5;
cout<<"5元硬幣"<<e<<"枚"<<endl;
}
if(money>=1)
{
cout<<"1元硬幣"<<money<<"枚"<<endl;
}
cout<<endl;
system("pause");
return 0;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2