I request that it is done in C++. Giving 100 points. To find the number of 100 dollar bills, 20 dollar bills, 10 dollar bills, 5 dollar bills, 1 dollar bills, quarters, dimes, nickels, and pennies that will make up an amount entered by the user.
Sample Output:
Enter Amount: 489.98
The number of 100 dollar bills: 4
The number of 20 dollar bills: 4
The number of 10 dollar bills: 0
The number of 5 dollar bills: 1
The number of 1 dollar bills: 4
The number of Quarters: 3
The number of Dimes: 2
The number of Nickels: 0
The number of Pennies: 3
I have this so far.(look at attachment)