โ Back to Functions
Question 397
Check if a Number Is Odd
Check if a Number Is Odd
Write a functionbool isOdd(int n)that returnstruewhennis odd andfalseotherwise. Call it withisOdd(7)and print the boolean result as the wordtrueorfalse: true Usecout << boolalphaso the bool prints astrue/falseinstead of1/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.