有符号十六进制值范围
假设我有一个以二进制补码形式签名的 6 位十六进制数。它的范围是多少?
<代码>-(16^5)< x < (16 ^ 5)
正确吗?
Say I had a 6 digit hexadecimal signed in two's complement. What would be its range?
-(16 ^ 5) < x < (16 ^ 5)
Correct?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这听起来像是家庭作业。如果是这样,请这样标记您的问题。
思考这个问题的一种方法是:
认真思考最后一个问题的答案。
例如,最小的有符号 32 位 int 是 -2147483648。最大的有符号 32 位 int 是 2147483647。
This sounds like homework. If so, please tag your question as such.
One way to think about this:
Think hard about the answer to the last question.
For example, the smallest signed 32-bit int is -2147483648. The largest signed 32-bit int is 2147483647.