/ Published in: PHP
returns TRUE if the given number is even else FALSE. remember: if a number is not even then that doesn't automatically mean it is odd (fractions, negative numbers). even = number / 2 = 0. odd = number / 2 = 1.
Expand |
Embed | Plain Text
function is_even($num){ }
You need to login to post a comment.
