年利润

window.onload = function () {
var i = 1000;
var j = 0;
while (true){
i = i * 1.05;
if (i >= 5000){
break;
}
j++;
}
alert(j);
}

你可能感兴趣的:(年利润)