CJCoding With Joseph
15per day

Mixed Input Types - Age and Name

Write a program that reads three pieces of information in order:
1. An integer (age)
2. A single word (first name) 
3. A full line (favorite quote with spaces)

Display:

Age: [age]
Name: [name]
Quote: [quote]

IMPORTANT: After nextInt(), call nextLine() once to clear the buffer before reading the name.

Example input: 30, "Alice", "Live and learn"
Output:
Age: 30
Name: Alice
Quote: Live and learn

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

DO NOT wait for manual keyboard input - Scanner will read from the pre-filled buffer stream immediately. Call scanner.nextInt(), then scanner.nextLine() to clear buffer, then scanner.next() for name, then scanner.nextLine() for quote.

Think of it like Eclipse/VS Code but with the input already typed in and waiting for your Scanner to read it.

Expected Output:

Age: 30
Name: Alice
Quote: Live and learn
Topics:
User Input
📥 Auto-Input:
30\nAlice\nLive and learn\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.