How do I check if my value is a integer or not?
I want something like this:
if ( i/split != int ) {...}
Thanks,
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m not sure but I think you’re trying to find out if the result of the divide is a whole number. You can use modulus operator % to get the remainder from the divide operation.
Assuming
iandsplitare integer types (int, long, short, etc), then modulus returns 0 wheniorsplitis an integer value, ie: