mirror of
https://github.com/System-End/APCSA.git
synced 2026-04-19 16:38:24 +00:00
19 lines
423 B
Java
19 lines
423 B
Java
/* Lesson 4 Coding Activity Question 1 */
|
|
|
|
import java.util.Scanner;
|
|
|
|
public class U3_L4_Activity_One {
|
|
|
|
public static void main(String[] args) {
|
|
Scanner sc = new Scanner(System.in);
|
|
|
|
System.out.println("Enter a number:");
|
|
int n = sc.nextInt();
|
|
|
|
if (n < 65 || n > 100) {
|
|
System.out.println("True");
|
|
} else {
|
|
System.out.println("False");
|
|
}
|
|
}
|
|
}
|