this post was submitted on 31 Oct 2024
381 points (98.5% liked)

196

16766 readers
3570 users here now

Be sure to follow the rule before you head out.

Rule: You must post before you leave.

^other^ ^rules^

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] tipicaldik 13 points 2 months ago (2 children)

I remember coding actionscript in Flash and using modulo (%) to determine if a number was even or odd. It returns the remainder of the number divided by 2 and if it equals anything other than 0 then the number is odd.

[–] Korne127 24 points 2 months ago

Yeah. The joke is that this is the obvious solution always used in practise, but the programmer is that bad that they don't know it and use some ridiculous alternative solutions instead.

[–] [email protected] 19 points 2 months ago

I believe that's the proper way to do it.