mirror of
https://github.com/System-End/APCSA.git
synced 2026-04-19 16:38:24 +00:00
24 lines
594 B
Java
Executable file
24 lines
594 B
Java
Executable file
/* Lesson 1 Coding Activity Question 1 */
|
|
|
|
import java.util.Scanner;
|
|
|
|
public class U2_L1_Activity_One {
|
|
|
|
public static void main(String[] args) {
|
|
Scanner scan = new Scanner(System.in);
|
|
|
|
System.out.println("What is your name?");
|
|
String name = scan.nextLine();
|
|
|
|
System.out.println("What is your favorite number?");
|
|
int favoriteNumber = scan.nextInt();
|
|
|
|
System.out.println(
|
|
"Your name is " +
|
|
name +
|
|
" and you like the number " +
|
|
favoriteNumber +
|
|
"."
|
|
);
|
|
}
|
|
}
|