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