Assignment #84 and NoticingEvenNumbers

Code

    /// Name: Jason Kim
    /// Period: 7
    /// Program Name: NoticingEvenNumbers
    /// File Name: NoticingEvenNumbers.java
    /// Date Finished:11/30/15
    
    public class NoticingEvenNumbers
    {
        public static void main(String [] args)
        {
            for ( int n = 1 ; n <= 20 ; n++)
            {
                if ( n%2 == 0)
                {  
                    System.out.println(n + "<");
                }
                else
                {
                    System.out.println(n);
                }
            }
        }
    }

    

Picture of the output

Assignment84