CJCoding With Joseph

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 is 3, 9, 5, print:

Max: 9

You may use Math.max(...) or if comparisons.

Expected Output:

Max: 9
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
3\n9\n5\n
This input is automatically fed to your program's stdin
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.