home *** CD-ROM | disk | FTP | other *** search
- 10 input"[147][144]annual interest rate";i:i=i/100
- 20 input"amt. to be deposited";pv
- 30 print"compounding periods per year:"
- 40 input"1, 2, 4, 12, 365";n
- 50 t=pv*(1+i/n)^n
- 60 fv=int(t*100)/100
- 70 print"future value = $";fv
-