this post was submitted on 31 Oct 2024
383 points (99.0% liked)

196

16490 readers
2452 users here now

Be sure to follow the rule before you head out.

Rule: You must post before you leave.

^other^ ^rules^

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 45 points 2 weeks ago (9 children)

Just divide the number into its prime factors and then check if one of them is 2.

[–] [email protected] 13 points 2 weeks 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.

[–] [email protected] 25 points 2 weeks 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 weeks ago

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

load more comments (6 replies)