Floating Point Presentation
#描述#
Do you know IEEE’s contract of single floating point data? If you are not sure, following is the contract:
<br><center><img src="../Images/point.gif" ></center>
This problem is really simple for you: please convert the real data into the IEEE single floating point data presentation.
#格式#
##输入格式##
There are N (1≤N≤150) real data need to be converted. Real data can be negative, zero, and positive.
##输出格式##
For each real data, print the IEEE single floating point data presentation in upper case hexadecimal letters in a single line.
#样例1#
##样例输入1##
2
23.85
-23.85
##样例输出1##
41BECCCD
C1BECCCD
#限制#
1000ms
32768KB
#提示#
#来源#