import java.util.*;
class p2
{
public static void main (String arg[])
{
Scanner in=new Scanner (System.in);
int a=1,b;
System.out.println ("\n\t The number should be from 14 to 38");
System.out.print ("\n\t Enter the number = ");
a=in.nextInt();
if (a>=14 && a<=38)
{
b=a%3;
if (b==0)
System.out.println ("\n\t Divisible by 3 ");
else
System.out.println ("\n\t Not Divisible by 3 ");
}
else
System.out.println ("\n\t Out of defined range ");
}
}
class p2
{
public static void main (String arg[])
{
Scanner in=new Scanner (System.in);
int a=1,b;
System.out.println ("\n\t The number should be from 14 to 38");
System.out.print ("\n\t Enter the number = ");
a=in.nextInt();
if (a>=14 && a<=38)
{
b=a%3;
if (b==0)
System.out.println ("\n\t Divisible by 3 ");
else
System.out.println ("\n\t Not Divisible by 3 ");
}
else
System.out.println ("\n\t Out of defined range ");
}
}
No comments:
Post a Comment