You are viewing a single thread.
View all comments
0 points
*

I feel like I accidentally do something similar everytime I program anything. I am just bad at it, I don’t know the short cuts or all the commands, but by God, it will work when I am done with it… maybe.

I don’t know the right wat to do this, but I think there would be something like:

x = Number

If (x//2)is.integer() == “true”:

Print(“Even”)

Else:

Print(“odd”)

Maybe? Idk. Probably a bunch of syntax issues and I haven’t written anything in like a year.

permalink
report
reply
0 points

You basically got it yeah. You can do x % 2 and check if that is 0, as % calculates the remainder (in python at least)

permalink
report
parent
reply
0 points
*

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.

permalink
report
parent
reply
0 points
int val = 3;
bool is_odd = val & (decltype(val))0x01 == (decltype (val))1;
permalink
report
parent
reply

Programmer Humor

!programmerhumor@lemmy.ml

Create post

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

Rules:

  • Posts must be relevant to programming, programmers, or computer science.
  • No NSFW content.
  • Jokes must be in good taste. No hate speech, bigotry, etc.

Community stats

  • 5.4K

    Monthly active users

  • 888

    Posts

  • 9K

    Comments

Community moderators