Question: java* Write an application that reads a monetary amount, and then determines the fewest number of each bill and coin needed to represent that amount,
java*
Write an application that reads a monetary amount, and then determines the fewest number of each bill and coin needed to represent that amount, starting with the highest (assuming $10 bill is the maximum size needed).
if 47.63 is entered, the equivalent penny amount should be 4763. 47.63 x 100 returns 4763.0 (a double value). And then remove the decimal part with a (int) cast. Of course, each money measurement must be converted as penny amount. For example, $10 is 1000 pennies; $1 is 100 pennies; and $0.25 is 25 pennies etc. Only one (int) cast is allowed to use
Next, use the equivalent penny amount to calculate the fewest number of $10 bill in a division operation, and then calculate the remaining balance in a remainder operation. The remaining balance should be used to calculate the next number.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
