APCSA/U3/L1/U3_L1_Activity_Two.java
2026-03-09 21:55:57 -07:00

15 lines
365 B
Java
Executable file

/* Lesson 1 Coding Activity Question 2 */
import java.util.Scanner;
public class U3_L1_Activity_Two {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Please enter an integer:");
int x = scan.nextInt();
if (x == 48) {
System.out.println("YES");
}
}
}