gpt4 book ai didi

javascript - 向下舍入变量

转载 作者:行者123 更新时间:2023-11-30 20:44:08 25 4
gpt4 key购买 nike

在这个脚本中,我想在 Cost6MP 将自身的 30% 添加到自身之后四舍五入,这样小数点就看不到了。他们有什么方法可以舍入这个变量(最好向下舍入)吗?

<script type="text/javascript">
function gainCoinsPS6MP() {
if (Bitcoins > Cost6MP - 1) {
BitcoinsPS = BitcoinsPS + 1;
Bitcoins = Bitcoins - Cost6MP;
Amount6MP = Amount6MP + 1;
PS6MP = PS6MP + 1;
Cost6MP = Cost6MP + ((Cost6MP * 30)/100)

} else {
alert("Are you trying to scam me!?");
}
}
</script>

最佳答案

尝试更改最后一行以使用 Math.floor ,这就像一个向下舍入的方法:

Cost6MP = Math.floor(Cost6MP + ((Cost6MP * 30)/100))

如文档所示,这里有一些示例效果:

console.log(Math.floor(5.95));
// expected output: 5

console.log(Math.floor(5.05));
// expected output: 5

console.log(Math.floor(5));
// expected output: 5

console.log(Math.floor(-5.05));
// expected output: -6

关于javascript - 向下舍入变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48928474/

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