CJCoding With Joseph
15per day

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
๐Ÿ“ฅ Auto-Input:
5\ncat\nhello\nhi\nprogram\na\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.