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

Popular posts from this blog

88: Using switch statement Write a C program to input marks of five subjects Physics, Chemistry, Biology, Mathematics and Computer. Calculate percentage and grade according to following: // Percentage >= 90% : Grade A Percentage >= 80% : Grade B Percentage >= 70% : Grade C Percentage >= 60% : Grade D Percentage >= 40% : Grade E Percentage < 40% : Grade F

205: Book Catalog: Define a struct to represent a book with attributes like title, author, and publication year. Write a program to create a catalog of books by taking user input and display books published after a certain year.

15: Take input of age and name of 3 people by user and determine oldest and youngest among them with his age. -_-_-_-_-_-_-_-_-(line with spaces input concept)-_-_-_-_-_-_-_-_