CIS 260 C++ Programming

Program Requirements: Make Change

 

Design a program that reads the amount of a purchase and the amount received in payment (both amounts in cents) and then computes the change in dollars, quarters, dimes, nickels and pennies.

Your program should handle amounts less than one hundred dollars.

Sample Output
Please Enter
  Purchase Amount: 232
  Payment Amount:  500

Your change is:
  2 Dollars
  2 Quarters
  1 Dime
  1 Nickel
  3 Pennies

Thank You

Project Requirements:

Preliminary Specification: 

Problem Description
Algorithm
Test Set Design

Final Program:

Cover Page
Problem Description
Algorithm
Test Set Design
Source Code (w/line numbers)
Actual Program Output