CSCI 201 -- Introduction to Algorithm Design -- handout 5 Problem 3 Due October 22 [25 points] Assume you want to save a specific amount of money. You deposit a fixed amount of money each month and each month your money earns a little interest. For instance, let's assume you wish to save $1000 and you deposit $100 per month in an account earning 12% interest per year (1% per month). Assume that each month's interest payment is based on the starting balance for the month. The bank statement for your savings would look something like: PERIOD STARTING DEPOSIT INTEREST ENDING BALANCE BALANCE 1 0.00 100.00 0.00 100.00 2 100.00 100.00 1.00 201.00 3 201.00 100.00 2.01 303.01 4 303.01 100.00 3.03 406.04 5 406.04 100.00 4.06 510.10 6 510.10 100.00 5.10 615.20 7 615.20 100.00 6.15 720.35 8 720.35 100.00 7.20 828.35 9 828.35 100.00 8.28 936.63 10 936.63 100.00 9.37 1046.00 Your assignment is to write a Pascal program that prompts for a goal, a monthly deposit, and an interest and then prints a table similar to that above until the goal has been achieved.