this post was submitted on 07 Dec 2023
1 points (100.0% liked)

Programming Horror

1889 readers
4 users here now

Welcome to Programming Horror!

This is a place to share strange or terrible code you come across.

For more general memes about programming there's also Programmer Humor.

Looking for mods. If youre interested in moderating the community feel free to dm @[email protected]

Rules

Credits

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 0 points 11 months ago* (last edited 11 months ago) (5 children)

modulo

pseudocode:

if number % 2 == 0
  return "number is even" (is_num_even = 1 or true)
else
  return "number is odd" (is_num_even = 0 or false)

plus you'd want an input validation beforehand

[–] [email protected] 0 points 11 months ago* (last edited 11 months ago) (1 children)

who needs modulo when you can get less characters out of

while (number > 1) {
  number -= 2;
}
return number;

very efficient

edit: or theres the trusty iseven api

[–] [email protected] 0 points 11 months ago (1 children)

here is somewhat less:

return (number % 2) == 0;

[–] [email protected] 0 points 11 months ago

return !(number & 1);

load more comments (3 replies)