如何将大数转换为小数?
0x34363932353433373538323038353135353439
0x34363932353433373538323038353135353439
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
0x34363932353433373538323038353135353439
0x34363932353433373538323038353135353439
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
从 Unix/cygwin 命令行,您可以使用 bc。
还有在线版本。 如果您想在代码中执行此操作,您应该使用任意精度库工具,例如 Java 的 BigInteger、Perl 的 Math::BigInt、Tcl 的 math::bignum 或可用于 C 的许多多精度算术库,例如 GNU GMP,或 MPI。
From the Unix / cygwin command line, you can use bc.
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.
对我来说看起来像 ASCII! 在大端系统上,您将得到字符串“4692543758208515549”。 :-)
不管怎样,为了真正回答你的问题,Ruby 对于这个目的很有用:
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: