153: Write a program to read an amount (integer value) and break the amount into smallest possible number of bank notes. Note: The possible banknotes are 500, 100, 50, 20, 10, 5, 2, and 1
// Write a program to read an amount (integer value) and break the amount into smallest possible
// number of bank notes. Note: The possible banknotes are 500, 100, 50, 20, 10, 5, 2, and 1
#include <iostream>
using namespace std;
int main()
{
cout << "Muhammad Umar Chaudhry" << endl;
cout << "SU92-BSCSM-S23-007" << endl;
cout << "Question # 11" << endl
<< endl;
int cash;
cout << "Enter the amount of cash you have: ";
cin >> cash;
int five_hundred = cash / 500;
cash = cash % 500;
int hundred = cash / 100;
cash = cash % 100;
int fifty = cash / 50;
cash = cash % 50;
int twenty = cash / 20;
cash = cash % 20;
int ten = cash / 10;
cash = cash % 10;
int five = cash / 5;
cash = cash % 5;
int two = cash / 2;
cash = cash % 2;
int one = cash / 1;
cout << "Number of Rs.500 notes: " << five_hundred << endl;
cout << "Number of Rs.100 notes: " << hundred << endl;
cout << "Number of Rs.50 notes: " << fifty << endl;
cout << "Number of Rs.20 notes: " << twenty << endl;
cout << "Number of Rs.10 notes: " << ten << endl;
cout << "Number of Rs.5 notes: " << five << endl;
cout << "Number of Rs.2 notes: " << two << endl;
cout << "Number of Rs.1 notes: " << one << endl;
// 54388 gives every note
return 0;
}
Comments
Post a Comment