APCSA/U1/L2/U1_L2_Activity_Three.java
2026-03-09 21:55:57 -07:00

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 + ".");
}
}