mirror of
https://github.com/System-End/APCSA.git
synced 2026-04-19 16:38:24 +00:00
13 lines
371 B
Java
Executable file
13 lines
371 B
Java
Executable file
/* Lesson 2 Coding Activity Question 1 */
|
|
|
|
import java.util.Scanner;
|
|
|
|
class U1_L2_Activity_One {
|
|
|
|
public static void main(String[] args) {
|
|
Scanner food = new Scanner(System.in);
|
|
System.out.println("What is your favorite food?");
|
|
String foodlike = food.nextLine();
|
|
System.out.println("I like to eat " + foodlike + " as well!");
|
|
}
|
|
}
|