Odd or Even with Bitwise AND
EasyRead an integer and print one line of the form 7 is odd or 10 is even. Decide with the bitwise AND operator, not with %: an integer is odd exactly when its lowest bit is 1, and n & 1 isolates that bit. Choose the wording with the conditional operator ?: inside the printf call. If the integer cannot be read, print invalid input and return 1.
Success Criteria
Your code must pass 6 test case(s) to complete this exercise. 3 hint(s) are available if you need help.
How did you find this exercise?
Your rating helps us improve the content.
Sign in to track your progress
You can work on exercises as a guest, but sign in to track your progress and save your submissions.