///Name: Mutsu Osoegawa
///Period: 7
///Project Name: Evenness Method
///File Name: EvennessMethods.java
public class EvennessMethod
{
public static void main( String[] args )
{
for (int x = 0; x < 20; x++)
{
System.out.println((x + 1) +" "+ (isEven(x + 1) ? "<" : "") + (isDiv3(x+1)? "=":"") );
}
}
public static boolean isEven(int n)
{
return (n%2==0);
}
public static boolean isDiv3(int n)
{
return (n%3==0);
}
}