gpt4 book ai didi

JavaScript 四舍五入为负值

转载 作者:行者123 更新时间:2023-12-03 03:53:49 25 4
gpt4 key购买 nike

var d26=237500000;
alert(Math.round((d26*0.5)*0.95,-5));

此输出为112812500。但我需要像 112800000 这样的输出。最后 5 个数字将为 0(零)。

在 Excel 中,这种情况正在发生。不在 JavaScript 中。

最佳答案

var d26=237500000;
alert(Math.round(((d26*0.5)*0.95)/100000)*100000);

关于JavaScript 四舍五入为负值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45050025/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com