Assignment 84

code

///Name: Mutsu Osoegawa
///Period: 7
///Project Name: Noticing Even Numbers
///File Name: NoticingEvenNumbers.java
///Date: 2/16/2016

public class NoticingEvenNumbers
{
    public static void main( String[] args )
    {
        for ( int x = 1; x <= 20; x = x +1 )
        {
            if ( x % 2 != 0 )
            {
                System.out.println( x );
            }
            else if ( x % 2 == 0 )
            {
                System.out.println( x + "<" );
            }
        }
    }
}