CJCoding With Joseph

Count Words in a Line

Read one full line of text with sc.nextLine() and print how many words it contains. Words are separated by spaces. For example, if the input is the quick brown fox, print:

Words: 4

Use .trim() then .split("\\s+") and take the array .length.

Expected Output:

Words: 4
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
the quick brown fox\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.