CJCoding With Joseph

Check if a Number Is Odd

Write a function bool isOdd(int n) that returns true when n is odd and false otherwise. Call it with isOdd(7) and print the boolean result as the word true or false:

true

Use cout << boolalpha so the bool prints as true/false instead of 1/0.

Expected Output:

true
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.