Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何在 IEEE754 标准中编写 5/32。有没有做分数部分的捷径?
答案是0 10000010 00100000000000000000000。但是必须有一种更简单的方法将 5/32 写入这种格式,而不是先将其转换为二进制。
0 10000010 00100000000000000000000
我发现你可以这样做来更快地获得十进制数字。5(以 10 为底)= 101(二进制)和 32 = 1/(2^5)。所以 5/32 只是 101x2^-5