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