function getYearRatio(price, yearIndex, interestRate) {
if (!yearIndex--) return price;
else return getYearRatio(price, yearIndex, interestRate) + getYearRatio(price, yearIndex, interestRate) * interestRate
}
年化利率fn
最新推荐文章于 2025-12-20 12:23:55 发布
864

被折叠的 条评论
为什么被折叠?



