โ Back to User Input
Question 321
Find Maximum of Three
Find Maximum of Three
Read three integers from standard input (one per line) and print the largest of the three. For example, if the input is3,9,5, print: Max: 9 You may useMath.max(...)orifcomparisons.
Expected Output:
Max: 9
Topics:
User Input
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.