mirror of
https://github.com/System-End/APCSA.git
synced 2026-04-19 22:15:15 +00:00
15 lines
461 B
Java
Executable file
15 lines
461 B
Java
Executable file
/* Lesson 3 Coding Activity Question 2 */
|
|
|
|
import java.util.Scanner;
|
|
|
|
class U1_L3_Activity_Two {
|
|
|
|
public static void main(String[] args) {
|
|
Scanner scan = new Scanner(System.in);
|
|
System.out.println("Hi there. What is your name?");
|
|
String name = scan.nextLine();
|
|
System.out.println("Hi " + name + ". How old are you?");
|
|
int age = scan.nextInt();
|
|
System.out.println(name + " is " + age + " years old.");
|
|
}
|
|
}
|