โ Back to User Input
Question 323
Count Words in a Line
Count Words in a Line
Read one full line of text withsc.nextLine()and print how many words it contains. Words are separated by spaces. For example, if the input isthe quick brown fox, print: Words: 4 Use.trim()then.split("\\s+")and take the array.length.
Expected Output:
Words: 4
Topics:
User Input
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.