← Back to User Input
Question 36
Capture Word with next()
Capture Word with next()
Write a program that captures a single word using next() and displays: You entered [word] Example: If user enters "Bob", output should be: You entered Bob The next() method reads a single word (stops at whitespace) and automatically discards any leftover newline in the buffer. ⚠️ IMPORTANT - AUTO-INPUT MODE: This question uses automated input testing. When you run your code, the input stream will AUTOMATICALLY contain: 'Bob\n' DO NOT wait for manual keyboard input - Scanner will read from the pre-filled buffer stream immediately. Your program should use scanner.next() to read the word. Think of it like Eclipse/VS Code but with the input already typed in and waiting for your Scanner to read it.
Expected Output:
You entered Bob
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.