Week 5 - Change Calculator

In this exercise, you'll develop an application that tells how many quarters, dimes, nickles, and pennies are need to make change for any amount of change from 0 to 99 cents. One way to get the results is to use the divide and modulus operators along with the parseInt() method for truncating the results so they are whole number.

Change Calculator