> How to get mantissa and exponent of normed float ? > > for example: > float number = 27.52 > normed: = 0.2752 * 10^2 > > function I'm looking for should return 0.2752 and 2 > > wally > Soomething like that: Exponent = Int(Log10(Value)) + 1 Mantissa = Value / 10 ^ Exponent -- Benoît Minisini