CJCoding With Joseph

Ternary Operator Even or Odd

An integer n = 7 is given. Use the ternary (conditional) operator ?: to decide whether n is even or odd, then print exactly:

7 is odd

Build the sentence with string concatenation. Do not hardcode the word odd — let the ternary choose between "even" and "odd".

Expected Output:

7 is odd
Topics:
Miscellaneous
Code Editor
1
Tab to indent · Ctrl+Enter to run · Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.