โ Back to Loops
Question 336
Largest Digit in a Number
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 input3729the exact output is: 9 Pull digits off with% 10and/= 10, tracking the maximum.
Expected Output:
9
Topics:
Loops
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.