- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main ()
- {
- int total,cm,givingmoney;
- cout<<"***intelligent money-giving machine***"<<endl;
- cout<<"the purchase cost:"<<endl;
- cin>>total;
- cout<<"customers shell out:"<<endl;
- cin>>cm;
- givingmoney=cm-total;
- cout<<"you need to give: "<<givingmoney<<endl;
- if(givingmoney<0)
- {
- cout<<"your money is not enough!you need to pay"<<-givingmoney<<"dollars"<<endl;
- }
- if(givingmoney==0)
- {
- cout<<"you pay the same!thanks!"<<endl;
- }else
- {
- if(givingmoney>=500)
- {
- cout<<"500 dollar bills: "<<givingmoney/500<<" piece"<<endl;
- givingmoney=givingmoney%500;
- } if(givingmoney>=100)
- {
- cout<<"100 dollar bills: "<<givingmoney/100<<" piece"<<endl;
- givingmoney=givingmoney%100;
- } if(givingmoney>=50)
- {
- cout<<"50 dollar coin: "<<givingmoney/50<<" cookie"<<endl;
- givingmoney=givingmoney%50;
- } if(givingmoney>=10)
- {
- cout<<"10 dollar coin: "<<givingmoney/10<<" cookie"<<endl;
- givingmoney=givingmoney%10;
- }if(givingmoney>=5)
- {
- cout<<"5 dollar coin: "<<givingmoney/5<<" cookie"<<endl;
- givingmoney=givingmoney%5;
- }if(givingmoney>=1)
- {
- cout<<"1 dollar coin: "<<givingmoney/1<<" cookie"<<endl;
- givingmoney=givingmoney%1;
- }if(givingmoney=total)
- {
- cout<<"you pay the same,thanks!"<<endl;
- }if(givingmoney<total)
- {
- givingmoney=total-givingmoney;
- cout<<"that is not enough,YOU NEED TO PAY:"<<givingmoney<<"dollar smore"<<endl;
- }
- }
- system("pause");
- return 0;
- }
複製代碼 |