本帖最後由 古昇暘 於 2018-7-20 17:16 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- re:
- system("cls");
- int price,pay,money;
- cout<<" ***Money calculator*** "<<endl<<endl;
- cout<<" Please enter the price: ";
- cin>>price;
- cout<<" How much money did the customer pay: ";
- cin>>pay;
- money=pay-price;
- cout<<endl<<" You have to give back the customer "<<money<<" dollars"<<endl<<endl;
- if (money>=500)
- {
- cout<<" Five hundred dollar note "<<money/500<<" notes "<<endl;
- money%=500;
- }
- if (money>=100)
- {
- cout<<" One hundred dollar note "<<money/100<<"notes"<<endl;
- money%=100;
- }
- if (money>=50)
- {
- cout<<" Fifty dollar note "<<money/50<<"notes"<<endl;
- money%=50;
- }
- if (money>=10)
- {
- cout<<" Ten dollar note "<<money/10<<"notes"<<endl;
- money%=10;
- }
- if (money>=5)
- {
- cout<<" Five dollar note "<<money/5<<"notes"<<endl;
- money%=5;
- }
- if (money>=1)
- {
- cout<<" One dollar note "<<money/1<<"notes"<<endl;
- money%=1;
- }
- if(money>0)
- cout<<" One cent "<<money<<" cents "<<endl;
- cout<<endl;
- system("pause");
- goto re;
- return 0;
- }
- }
複製代碼 |