CJCoding With Joseph
15per day

Read Full Name with nextLine()

Write a program that reads a full name (with spaces) using nextLine() and displays:

You entered [full name]

Example: If user enters "John Doe", output should be: You entered John Doe

The nextLine() method reads the entire line up to and including the newline character, then discards the newline.

⚠️ IMPORTANT - AUTO-INPUT MODE:
This question uses automated input testing. When you run your code, the input stream will AUTOMATICALLY contain: 'John Doe\n'

DO NOT wait for manual keyboard input - Scanner will read from the pre-filled buffer stream immediately. Your program should use scanner.nextLine() to read the text.

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 John Doe
Topics:
User Input
📥 Auto-Input:
John Doe\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.