Hey guys, in my programming assignment I need to split the mantissa and exponent and add them to two separate variables. so £1.88 would be
double amount = 1.88;
//then after the conversion
mantissa = 1;
exponent = 88;
I've looked at this a lot over the web, and I can only find extremely complicated tutorials, I've only started learning java so I don't want to have to deal with anything complicated at the moment and I'd rather work may way up to that stuff.
if anyone could point me in the direction of a decent thread, or a decent website with tutorials and source code. I have researched but to no avail :(
Cheers guys.