#P1289. Hat’s IEEE
Hat’s IEEE
Problem Description
Your program will be given floating point numbers (32-bit), and calculateexponent and fraction.
IEEE 754:
SEEEEEEEEFFFFFFFFFFFFFFFFFFFFFFF
S = sign(1)
E = exponent(8)
F = fraction(23)
NOTE: If you donnot know IEEE 754,you can baidu it:)
Input
Each line contains a numbers.
Output
For each case, output a line containing two numbers, e (exponent) and f (fraction), by a single space. Fraction must be rounded to six digits after the decimal point.
6560.91
-6560.91
12 1.601785
12 -1.601785
NOTE: INTEL CPU
Author
戴帽子的