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