Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package lekciq_3;
- import javafx.scene.transform.Scale;
- import java.util.Scanner;
- public class task06 {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- int a = Integer.parseInt(scanner.nextLine());
- if (a < 100) {
- System.out.println("Less than 100");
- } else if (a <= 200) {
- System.out.println("Between 100 and 200");
- } else {
- System.out.println("Greater than 200");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement