โ Back to Functions
Question 249
Check if a Number Is Even
Check if a Number Is Even
Write a function bool isEven(int n) that returns true when n is even and false when it is odd.
The program prints true or false. For isEven(4) it prints true.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.