Assignemnt #105 and Evenness Method

Code

/// Name: David Shkolnikov
/// Period: 6
/// Program Name: Evenness Method
/// File Name: EvennessMethod.java
/// Date Finished: 4/11/2016

public class EvennessMethod
{
    public static void main( String[] args )
    {
        for ( int n = 1; n <= 20; n = n + 1 )
        {
            if (isEven(n) == true && isDivisibleBy3(n) == true)
                System.out.println(n + " <=");
            else if (isEven(n) == true && isDivisibleBy3(n) == false)
                System.out.println(n + " <");
            else if (isEven(n) == false && isDivisibleBy3(n) == true )
                System.out.println(n + " =");
            else
                System.out.println(n);
                }
    }
    public static boolean isEven( int n )
    {
        boolean result;
        result = (n % 2 == 0);
        return result;
    }
    public static boolean isDivisibleBy3( int n )
    {
        boolean result;
        result = (n % 3 == 0 );
        return result;
    }
}
    

Picture of the output

Assignment 8