每天进步1.1% 2026-2-01 23:06 | 56 | 日记 | Weiwei 12 字 | 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…