如何在 JavaScript 中获得完全准确的值?

发布于 2024-11-28 01:37:41 字数 309 浏览 0 评论 0原文

可能的重复:
巨大的整数 JavaScript 库

假设我想要 2^1000 的精确值>。我该如何获得整个值?也许每次完成乘法时都将其存储在一个字符串中,但最终它仍然会超过 10 位数字!有什么办法吗,还是 ECMAScript 不支持这个?

Possible Duplicate:
Huge Integer JavaScript Library

Suppose I want the exact value for 2^1000. How am I supposed to get the entire value? Maybe storing it in a string every time the multiplication is done, but it will still eventually go over 10 digits! Is there any way, or does ECMAScript just not support this?

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

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

发布评论

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

评论(1

似梦非梦 2024-12-05 01:37:41
Math.pow(2,1000)

返回

1.0715086071862673e+301

您需要多准确?

Math.pow(2,1000)

returns

1.0715086071862673e+301

how accurate do you need this to be?

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