Ashtin W.

asked • 01/28/23

Given four values representing counts of quarters, dimes, nickels and pennies, output the total amount as dollars and cents.

Code must be done in C.


Output each floating-point value with two digits after the decimal point, which can be achieved as follows:

printf("Amount: $%0.2lf\n", dollars);


Ex: If the input is: 4 3 2 1


where 4 is the number of quarters, 3 is the number of dimes, 2 is the number of nickels, and 1 is the number of pennies, the output is: $1.41


For simplicity, assume input is non-negative.

1 Expert Answer

By:

Still looking for help? Get the right answer, fast.

Ask a question for free

Get a free answer to a quick problem.
Most questions answered within 4 hours.

OR

Find an Online Tutor Now

Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.