mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
11 lines
192 B
JavaScript
11 lines
192 B
JavaScript
function nbYear(p0, percent, aug, p) {
|
|
percent = percent / 100;
|
|
|
|
let count = 0;
|
|
while (p0 < p) {
|
|
p0 *= 1 + percent;
|
|
p0 += aug;
|
|
count++;
|
|
}
|
|
return count;
|
|
}
|