a) to read in the amount of deposit, interest rate, and duration of the deposit in months; and
b) to print a table A = given sum of money each month N = months W = interest at the rate percent annually F = amount of money that will have accumulated after N months
F = A[(1+W/1200) + (1+W/1200)**2 + (1+W/1200)**3 + … + (1+W/1200)**N)]
c) to ask the user if he wants to repeat (a) and (b) for new inputs after printing the table.