A program to make change for an amount of money from 0 through 99 cents

Write a program to make change for an amount of money from 0 through 99 cents input by the user.
The output of the program should show the number of coins from each denomination used to make
change. Include the following:
 Add code to make sure only numeric data is entered.
 Add appropriate constants.
 Include an Exit button.
 Give descriptive names to all controls being used in code and all variables and constants.

Change

Amount of Change: 93

Determine Composition of Change

Quarters: 3 Dimes: 1

Sample Solution