โ Back to Printing
Question 271
Print a Comparison Result
Print a Comparison Result
Print the boolean result of the comparison5 > 3directly (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 wordstrueorfalse.
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.