Adding 32 bit floating point numbers.
问题 I'm learning more then I ever wanted to know about Floating point numbers. Lets say I needed to add: 1 10000000 00000000000000000000000 1 01111000 11111000000000000000000 2’s complement form. The first bit is the sign, the next 8 bits are the exponent and the last 23 bits are the mantisa. Without doing a conversion to scientific notation, how do I add these two numbers? Can you walk through it step by step? any good resources for this stuff? Videos and practice examples would be great. 回答1: