Answer to Question #273240 in C++ for Gillani

Question #273240

Faisal bank need a ATM machine. In this machine they need to add all possible currency divisions (1, 2, 5,


10, 20, 50, 100, 500, 1000, 5000). Write a C++ program in which, take required amount from user and find


the required currency division which will give to user in order to pay the required amount.


Example:


Sample input:


Enter required amount: 7895


Required currency division is:


5000: 1


1000: 2


500: 1


100: 3


50: 1


20: 2


10: 0


5: 1


2: 0


1: 0

1
Expert's answer
2021-12-01T00:52:39-0500
#include <iostream>
#include <iomanip>
using namespace std;


int main() {
    int nom[10] = {1, 2, 5, 10, 20, 50, 100, 500, 1000, 5000};
    int banknotes[10] = {0};
    int amount;


    cout << "Enter Amount: ";
    cin >> amount;
    if (amount <= 0) {
        cout << "Invalid input" << endl;
        return 0;
    }


    int i = 9;
    while (amount > 0) {
        if (amount < nom[i]) {
            i--;
            continue;
        }
        amount -= nom[i];
        banknotes[i]++;
    }


    cout << endl;
    cout << "NOMINAL | NUMBER" << endl;
    for (i=9; i>=0; i--) {
        if (banknotes[i] > 0) {
            cout << "   " << setw(4) << nom[i] << " | " << banknotes[i] << endl;
        }
    }
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS