Seems to be working... Thanks dheeraj_kumarYeah theres a way...
get the floor function from *www.dreamincode.net/code/snippet178.htm
floor(10.88) = 10, it cuts down the number to the exponent(number before the dot) only.
To get the mantissa(number after the dot) subtract the floor value from the original number.
10.88 - floor(10.88) = 10.88 - 10 = 0.88
and multiply it by 100 to get 88, which is your num2.
so simply,
num1 = floor(10.88)
num2 = (10.88 - num1)* 100