-1
A
回答
0
它分解:
+------------------- Sign
| +---+------------- Biased exponent
| | | +--------+-- Fractional part of the significant
1 10000 0000000000 = −2
由於偏置指數字段既不是0也不是最大值,這是一個正常數有一個隱含的1.
爲顯著和一個偏置指數
significant = 1.Fractional_part_of_the_significant
binary16隨着,該Exponent bias是15.
exponent = Biased_exponent - Exponent_bias;
把這個加上1 10000 0000000000
(**
意味着冪)
value = (-1)**sign * 1.Fractional * 2**(Biased_exponent - Exponent_bias)
value = -1 * 1.0000000000(binary) * 2**(10000(binary) - 15)
value = -1 * 1.0 * 2**(16 - 15)
value = -2
相關問題
- 1. 將二進制轉換爲十進制
- 2. 將十進制轉換爲二進制
- 3. 將十進制轉換爲十六進制/二進制
- 4. 將十六進制轉換爲二進制到十六進制?
- 5. 將十六進制轉換爲二進制,然後轉換爲十進制
- 6. 如何將數字(十進制)轉換爲二進制(二進制)數字和從二進制到十進制?
- 7. 從十進制轉換爲二進制
- 8. 二進制轉換爲十進制 - understaing
- 9. 從二進制轉換爲十進制
- 10. 十六進制轉換爲二進制
- 11. 從二進制轉換爲十進制
- 12. 十六進制轉換爲二進制
- 13. 將十進制轉換爲二進制和二進制轉換爲十進制的程序?
- 14. 將十進制轉換爲二進制,八進制和十六進制?
- 15. 將十進制數轉換爲二進制/十六進制/八進制符號
- 16. C++將二進制轉換爲十進制,八進制
- 17. 十進制數轉換在半字節的二進制形式
- 18. 如何將int數從十進制轉換爲二進制
- 19. 如何將二進制轉換爲十進制
- 20. 如何將二進制轉換爲十進制與長整數?
- 21. 如何將十六進制轉換爲二進制iphone
- 22. 如何將十六進制轉換爲二進制?
- 23. 如何將十進制轉換爲二進制的64位?
- 24. 如何將十六進制轉換爲二進制
- 25. 如何將十進制轉換爲二進制的JS?
- 26. 如何將十進制(xx.xx)轉換爲二進制
- 27. 如何將二進制轉換爲十進制?
- 28. 如何使用BigInteger將二進制轉換爲十進制?
- 29. 如何將單精度浮點數轉換爲十進制?
- 30. 如何將十進制轉換爲二進制將其與〜顛倒並將其轉換回十進制