Lab 8: Functions


Write a program that tells what coins to give out for any amount of change from 1 cent to 99 cents. For example if the amount is 67 cents, the output should be:
67 cents can be given as
2 quarter(s) 1 dime(s) 1 nickels and 2 penny(pennies).

Your program should use the following functions: Include a loop that lets the user repeat this computation for new input values until the user says she or he wants to end the program. (Do this last).
Save your file as lab8.cpp.