school/brute-force/test.java

15 lines
273 B
Java
Raw Normal View History

2020-11-11 08:47:37 -05:00
import java.util.Scanner;
public class LabProgram {
public static void main(String[] args) {
/* Type your code here. */
Scanner scnr = new Scanner(System.in);
int x;
int z = 0;
x = scnr.nextInt();
if (x > 9)
z = 3;
z = z + 1;
System.out.print(z);
}}