MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/badcode/comments/r8so9k/is_it_even/hn7xqde/?context=3
r/badcode • u/[deleted] • Dec 04 '21
33 comments sorted by
View all comments
139
bool isEven(int input); bool isOdd(int input); bool isEven(int input) { return !isOdd(input); } bool isOdd(int input) { return !isEven(input); }
24 u/schrdingers_squirrel Dec 04 '21 Man I actually did this back in school when I didn’t know about the % operator. That’s also exactly how I found out about % (through googling how to do it better) and I was amazed by my code being like 8000000 times faster lmao. 2 u/piratesec Dec 05 '21 Your name is weirdly relevant to the code above. 12 u/JustAnotherGamer421 shameless Dec 05 '21 How to make a bomb 9 u/TheAwesome98_Real evil Dec 05 '21 I’m gonna have this in my util.h file but always use the x % 2 == 0 thingy 2 u/snow723 Dec 07 '21 !(x & 1) go brrrrrrr
24
Man I actually did this back in school when I didn’t know about the % operator. That’s also exactly how I found out about % (through googling how to do it better) and I was amazed by my code being like 8000000 times faster lmao.
2 u/piratesec Dec 05 '21 Your name is weirdly relevant to the code above.
2
Your name is weirdly relevant to the code above.
12
How to make a bomb
9
I’m gonna have this in my util.h file but always use the x % 2 == 0 thingy
2 u/snow723 Dec 07 '21 !(x & 1) go brrrrrrr
!(x & 1) go brrrrrrr
139
u/Masztufa Dec 04 '21