this post was submitted on 21 Jun 2023
0 points (NaN% liked)

Programmer Humor

32048 readers
1372 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] Guy_Fieris_Hair@lemmy.world 0 points 1 year ago* (last edited 1 year ago) (1 children)

y = 1

while y ==1:

x = input("Enter Number")

if int(x) % 2 == 0:

print("EVEN")

else:

print("ODD")

I don't know why, but I opened up my IDLE for the first time in a year and did it.

[โ€“] MrMagnesium12@feddit.de 0 points 1 year ago
int val = 3;
bool is_odd = val & (decltype(val))0x01 == (decltype (val))1;