Javascript - 如何计算数字的平方?

发布于 2024-07-19 14:50:16 字数 274 浏览 7 评论 0原文

使用 javascript 函数

function squareIt(number) {
   return number * number;
}

当给定数字 4294967296 时,函数返回 18446744073709552000

每个人都知道真正的答案是 18446744073709551616 :-)

我想这与我的 32 位机器上的舍入有关。 然而,这个脚本在 64 位机器上会给出正确的答案吗? 有人试过这个吗?

Using the javascript function

function squareIt(number) {
   return number * number;
}

When given the number 4294967296 the function returns 18446744073709552000 is returned

Everyone knows the real answer is 18446744073709551616 :-)

I guess this is to to with rounding on my 32-bit machine. However, would this script give the right answer on a 64 bit machine? Has anyone tried this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

香橙ぽ 2024-07-26 14:50:16

那这个呢

function squareIt(number){
return Math.pow(number,2)
}

what about this

function squareIt(number){
return Math.pow(number,2)
}
ˇ宁静的妩媚 2024-07-26 14:50:16

Javascript 在内部使用 64 位浮点算术进行数值计算 - 您看到的结果反映了这一点,并且无论底层架构如何,都会发生。

Javascript uses 64 bit floating point arithmetic internally for numerical calculations - the results you see are a reflection of this, and will happene regardless of the underlying architecture.

独留℉清风醉 2024-07-26 14:50:16

这是另一个基于 BigInteger.js 的示例。

alert(bigInt(4294967296).square());
<script src="https://cdnjs.cloudflare.com/ajax/libs/big-integer/1.6.40/BigInteger.min.js"></script>

Here is one more example based on BigInteger.js.

alert(bigInt(4294967296).square());
<script src="https://cdnjs.cloudflare.com/ajax/libs/big-integer/1.6.40/BigInteger.min.js"></script>

长途伴 2024-07-26 14:50:16

ChrisV- 请参阅这篇文章。 此外,通过直接在浏览器 URL 文本框中输入以下 JavaScript,人们可以更轻松地评估您的问题:

javascript:4294967296*4294967296

ChrisV- see this post. Also it easier for people to evaluate your question by typing the following JavaScript directly into the browser URL textbox:

javascript:4294967296*4294967296
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文