Right now I convert the string containing the decimal number to an integer (ignoring the radix point for now), load it into ST(0), and divide by the correct power of ten to account for the radix point. This seems round about, and requires I have a look up table for some of the powers of 10. Is there a better way to do this?

link|improve this question

73% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Off the top of my head, I'm tempted by the notion of constructing the mantissa part , counting the number of digits, and setting the exponent directly instead of doing division.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.