CJCoding With Joseph

Largest Digit in a Number

Read a positive integer n from standard input and print its largest digit, with no trailing newline. For example, if the input is 4821, print:

8

Inspect each digit with n % 10 and keep the maximum.

Expected Output:

8
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
4821
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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.