mirror of
https://github.com/System-End/APCSA.git
synced 2026-04-19 16:38:24 +00:00
15 lines
476 B
Java
Executable file
15 lines
476 B
Java
Executable file
/* Lesson 2 Coding Activity Question 3 */
|
|
|
|
import java.util.Scanner;
|
|
|
|
class U1_L2_Activity_Three {
|
|
|
|
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("What state do you live in?");
|
|
String state = scan.nextLine();
|
|
System.out.print("My name is " + name + ". I live in " + state + ".");
|
|
}
|
|
}
|