Can anyone give me an easy way to find out the numbers after the decimal point of the double?
All i need to do is to find out if the number ends in 0 like 1.0 or 10.0 or 32
Here is something you can try. Converting the double to an int removes the decimal place. Then you can do a Mod operation on the same number get the remainder equal to what is in the decimal place.