有符号十六进制值范围

发布于 2024-08-31 01:26:58 字数 102 浏览 3 评论 0原文

假设我有一个以二进制补码形式签名的 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 技术交流群。

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

发布评论

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

评论(1

找回味觉 2024-09-07 01:26:58

这听起来像是家庭作业。如果是这样,请这样标记您的问题。

思考这个问题的一种方法是:

  • 6 个十六进制数字表示多少个字节?
  • 这些字节代表多少位?
  • 由于符号,您丢失了多少位?
  • 给定您的总位数,您可以表示的最小值是多少?
  • 给定您的总位数,您可以表示的最大值是多少?

认真思考最后一个问题的答案。

例如,最小的有符号 32 位 int 是 -2147483648。最大的有符号 32 位 int 是 2147483647。

This sounds like homework. If so, please tag your question as such.

One way to think about this:

  • How many bytes are represented with 6 hex digits?
  • How many bits are represented with those bytes?
  • How many bits do you lose due to the sign?
  • Given your total number of bits, what is smallest value you can represent?
  • Given your total number of bits, what is the largest value you can represent?

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.

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