如何将十进制转换为二进制,反之亦然
如何将十进制转换为二进制,反之亦然
我正在Solaris10平台上工作
任何人都可以帮助我使用命令
Decimal to Binary
4000000002-100000000000000000000000000010
Binary to decimal
100000000000000000000000000010-4000000002
how to convert Decimal to binary and viceversa
i am working on solaris10 platform
can anybody help me with a command
Decimal to Binary
4000000002-100000000000000000000000000010
Binary to decimal
100000000000000000000000000010-4000000002
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 bc 命令来实现此目的。
对于十进制到二进制,将
obase
设置为2
对于二进制到十进制,将
ibase
设置为2
You can make use of the
bc
command for this.For Decimal to binary, set
obase
to2
For Binary to Decimal, set
ibase
to2