gpt4 book ai didi

javascript - Ecmascript bigint,四舍五入到偶数

转载 作者:行者123 更新时间:2023-12-03 00:33:38 27 4
gpt4 key购买 nike

我正在使用 ESNext 的 bigint 功能。进行除法时,bigint 舍入为 0。例如以下示例:

带数字:

> 3000 / 1578
1.9011406844106464

使用 bigint:

3000n / 1578n
1n

我想编写一个可以进行除法但使用银行舍入(舍入到偶数)的函数,而不是舍入到 0。

示例

function divide(a, b) {
return a/b;
}

我只是有点困惑如何编写我的 divide 函数,并使用余数舍入为偶数。这是我尝试过的:

function divide(a, b) {
let result = a/b;
// if modulo is over half the divisor
if ((a % b) * 2n > b) {
// Add 1 if result is odd
if (result % 2n === 1n) result++;
} else {
// Remove 1 if result is even
if (result % 2n !== 1n) result--;
}
return result;
}

这为我提供了 divide(3000n, 1578n) 的正确结果,但我注意到这将为我提供错误的 divide(7n, 2n) 结果,我希望四舍五入为 4n

最佳答案

银行家四舍五入仅影响余数正好是除数一半的除法。所有其他情况均进行正常舍入。

我认为你的函数应该修改如下:

function divide(a, b) {

// Make A and B positive
const aAbs = a > 0 ? a : -a;
const bAbs = b > 0 ? b : -b;

let result = aAbs/bAbs;
const rem = aAbs % bAbs;
// if remainder > half divisor, should have rounded up instead of down, so add 1
if (rem * 2n > bAbs) {
result ++;
} else if (rem * 2n === bAbs) {
// Add 1 if result is odd to get an even return value
if (result % 2n === 1n) result++;
}

if (a > 0 !== b > 0) {
// Either a XOR b is negative, so the result has to be
// negative as well.
return -result;
} else {
return result;
}
}
console.log(divide(3000n, 1578n));
console.log(divide(7n, 2n));
console.log(divide(-7n, 2n));

关于javascript - Ecmascript bigint,四舍五入到偶数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53752370/

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