日期: 2026年2月1日

1 篇文章

每天进步1.1%
// 每天进步1% 的计算 const dailyGrowth = 1.01; const days = 365; const growthResult = dailyGrowth ** days; console.log("\n每天进步1%(1.01的365次方)计算结果:"); console.log(`1.01 的 365 次方 = ${gr…