In a small town the population is p0 = 1000 at the beginning of a year. The population regularly increases by 2 percent per year and moreover 50 new inhabitants per year come to live in the town. How many years does the town need to see its population greater than or equal to p = 1200 inhabitants?
At the end of the first year there will be:
1000 + 1000 * 0.02 + 50 => 1070 inhabitants
At the end of the 2nd year there will be:
1070 + 1070 * 0.02 + 50 => 1141 inhabitants (** number of inhabitants is an integer **)
At the end of the 3rd year there will be:
1141 + 1141 * 0.02 + 50 => 1213
It will need 3 entire years.
My solution with recursion
// Аргументы: p0, percent, aug (inhabitants coming or leaving each year), p (population to equal or surpass)
function nbYear($p0, $percent, $aug, $p) {
// базовый случай: когда насленеие == $p
if ($p0 >= $p) return 0;
$populationIndexed = floor($p0 + ($p0 / 100 * $percent) + $aug);
// рекурсия, считаем года
$result = 1 + nbYear($populationIndexed, $percent, $aug, $p);
// возвращаем результат наверх по стеку
return $result;
}
// Test
class PopulationGrowthCasesTest extends TestCase
{
public function testBasics() {
$this->assertSame(15, nbYear(1500, 5, 100, 5000));
$this->assertSame(10, nbYear(1500000, 2.5, 10000, 2000000));
}
}
