Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class NumberInRange {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- int num = Integer.parseInt(scanner.nextLine());
- if (num >= -100 && num <= 100 && num != 0) {
- System.out.println("Yes");
- } else {
- System.out.println("No");
- }
- }
- }
- ИЛИ:
- import java.util.Scanner;
- public class NumberInRange {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- int num = Integer.parseInt(scanner.nextLine());
- System.out.println(num >= -100 && num <= 100 && num != 0 ? "Yes" : "No");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement