Advertisement

Odd or even test

Started by January 11, 2001 10:06 PM
2 comments, last by gimp 24 years ago
Can someone suggest a quick way of determining if a number is off or even. My first thought was to divide by 2 and see if there is a leftover. I''m sure though you could do a boolean test on the last bit or something like that... Suggestions Thanks Chris
Chris Brodie
if (value & 0x01) then odd.
Keys to success: Ability, ambition and opportunity.
Advertisement
Thanks.. That did the trick
Chris Brodie
Another way is:

  if ((value % 2) == 0) // evenelse // odd  


That''s just my way...

This topic is closed to new replies.

Advertisement