CJCoding With Joseph

Check if a Number Is Positive

Write a function bool isPositive(int n) that returns true when n is greater than 0, and false otherwise (zero is not positive).

The program prints true or false. For isPositive(5) 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.