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

196

16724 readers
2884 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@lemmy.world 14 points 1 month 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@lemmy.world 25 points 1 month 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.

[–] superkret@feddit.org 20 points 1 month ago

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