Question: Write an application in Java that reads a floating point value from the user representing an amount of money (dollars and cents), and determines the
Write an application in Java that reads a floating point value from the user representing an amount of money (dollars and cents), and determines the equivalent amount of quarters, dimes, nickels, and pennies. For example, the output might look like this:
Enter an amount of money (in the format x.xx such that x is a digit): 0.99 You have 3 quarters, 2 dimes, 0 nickels, and 4 pennies.
Alternatively, your application may read an integer representing the total number of cents, and the output might look like this:
Enter the number of cents: 99 You have 3 quarters, 2 dimes, 0 nickels, and 4 pennies.
Choose appropriate names for your identifiers. Use comments and constants appropriately.
Thank you will leave a good rating! Please use Java and implement comments and clear code
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
