如何将大数转换为小数?

发布于 2024-07-07 07:39:18 字数 47 浏览 5 评论 0原文

0x34363932353433373538323038353135353439

0x34363932353433373538323038353135353439

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

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

发布评论

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

评论(2

你列表最软的妹 2024-07-14 07:39:18

从 Unix/cygwin 命令行,您可以使用 bc。

$ bc
ibase=16
34363932353433373538323038353135353439
1164362276596472215941024063897591129839055929

还有在线版本。 如果您想在代码中执行此操作,您应该使用任意精度库工具,例如 Java 的 BigInteger、Perl 的 Math::BigInt、Tcl 的 math::bignum 或可用于 C 的许多多精度算术库,例如 GNU GMP,或 MPI

From the Unix / cygwin command line, you can use bc.

$ bc
ibase=16
34363932353433373538323038353135353439
1164362276596472215941024063897591129839055929

There is also an online version. If you want to do it in code you should use an arbitrary precision library facility, like Java's BigInteger, Perl's Math::BigInt, Tcl's math::bignum, or of the many multiple precision arithmetic libraries that are available for C, like GNU GMP, or MPI.

审判长 2024-07-14 07:39:18

对我来说看起来像 ASCII! 在大端系统上,您将得到字符串“4692543758208515549”。 :-)

不管怎样,为了真正回答你的问题,Ruby 对于这个目的很有用:

ruby -e 'p 0x34363932353433373538323038353135353439'

Looks like ASCII to me! On a big-endian system, you get the string "4692543758208515549". :-)

Anyway, to actually answer your question, Ruby is useful for that purpose:

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