CJCoding With Joseph

Largest Digit in a Number

Read a positive integer from input and use a loop to find its largest digit. Print that digit followed by a newline. For input 3729 the exact output is:

9

Pull digits off with % 10 and /= 10, tracking the maximum.

Expected Output:

9
Topics:
Loops
๐Ÿ“ฅ Auto-Input:
3729\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 (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.