public class Solution { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); String s; int i;
System.out.println("Please enter the number. To close the program type \"exit\"");
while (true) { s = reader.readLine(); if (s.equals("exit")) break;
i = Integer.parseInt(s); if (i % 29 == 0 && i % 2 == 0 && i < 50) System.out.println(i + " is a correct number"); else System.out.println(i + " is an incorrect number"); }
Comments
Leave a comment