CJCoding With Joseph

Print a Comparison Result

Print the boolean result of the comparison 5 > 3 directly (do NOT type the word yourself). System.out.println(5 > 3) evaluates the expression first, so the output is:

true

Java prints booleans as the lowercase words true or false.

Expected Output:

true
Topics:
Printing
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.