CJCoding With Joseph
15per day

Age Calculator Input

Write a program that reads a person's name (single word) and age, then calculates and displays their age in 10 years:

Hello [name], in 10 years you will be [age] years old!

Read the name as a String using scanner.next() and age as an int using scanner.nextInt().

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

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

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

Expected Output:

Hello John, in 10 years you will be 35 years old!
Topics:
User Input
📥 Auto-Input:
John\n25\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.