โ Back to Loops
Question 147
Longest Word Length
Longest Word Length
Read an integer n, then read n words. Find and print the length of the longest word. Use a loop to read each word, compare its length to the current maximum using word.length(), and keep track of the maximum length found.
Expected Output:
7
Topics:
ArraysLoops
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.