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

196

16899 readers
1029 users here now

Be sure to follow the rule before you head out.

Rule: You must post before you leave.

^other^ ^rules^

If you have any questions, feel free to contact us on our matrix channel.

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] tipicaldik@lemmy.world 13 points 3 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@lemmy.world 25 points 3 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.

[–] superkret@feddit.org 20 points 3 months ago

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