You are viewing a single thread.
View all comments 1 point
bool isEven(int num) {
return !isOdd(num);
}
bool isOdd(int num) {
return !isEven(num);
}
bool isEven(int num) {
return !isOdd(num);
}
bool isOdd(int num) {
return !isEven(num);
}
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
3.3K
Monthly active users
1K
Posts
37K
Comments