'ProgramMode:RUN "Amount invested"?->A "Interest rate (in %)"?->I "compounded(per year)"?->N "Time (in years)"?->T A*(1+(I/(100*N)))^(N*T)->Q RndFix(Q,2)->Q ClrText Locate 1,1,"$" Locate 2,1,A Locate 1,2,"Compounded" Locate 12,2,N Locate 1,3,"times a year at" Locate 1,4,I Locate 6,4,"% over" Locate 13,4,T Locate 17,4,"years" Locate 1,5,"will be worth:" Locate 1,6,"$" Locate 2,6,Q