โ Back to If Statements
Question 344
Three-Way Number Comparison (Input)
Three-Way Number Comparison (Input)
Read two integersaandbfrom standard input. Using an if / else-if / else chain, print exactly one of these lines: <a> is less than <b> <a> is greater than <b> <a> is equal to <b> For the input3 5the output is: 3 is less than 5
Expected Output:
3 is less than 5
Topics:
If Statements
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.