Results 11 to 12 of 12
You can do this a few ways...
Iteration, like roxoff showed.
Recursion, which is needlessly complicated in this case.
Or with this formula.
let x = end answer
let p ...
- 04-26-2007 #11
You can do this a few ways...
Iteration, like roxoff showed.
Recursion, which is needlessly complicated in this case.
Or with this formula.
let x = end answer
let p = starting population
let i = increase in size each year
let y = how many years
x = p*(i^y)
As in, x equals p multiplied by i to the y power.Two levels higher than a newb.
(I can search google)
- 05-06-2007 #12Linux Newbie
- Join Date
- Sep 2006
- Posts
- 175
Thanks guys for the help...appreciated..


Reply With Quote
