How would I detect wheather or not an integer is a whole number or a decimal number?
Like 10 instead of 10.234.
The integer IS a whole number, like 10 and thats it.
Oops, damn, that's not what I mean, you're right. What I meant to ask is:
How do I determine if a number divides into another number evenly or not?
If (FirstNumber Mod SecondNumber) = Zero
Then FirstNumber is divided evenly by second number