Assignemnt #84 Noticing Even Numbers

Code

    /// Name: Drew Boxold
    /// Period: 5
    /// Program Name: Noticing Even Numbers
    /// File Name: NoticeEven.java
    /// Date Finished: 3/1/16
    
    public class NoticeEven
    {
        public static void main(String[] args)
        {
            for ( int n = 1; n <= 20; n++ )
            {
                System.out.print(n + " ");
                
                if ( n % 2 == 0 )
                {
                    System.out.println("<");
                }
                else
                {
                    System.out.println();
                }
            }
        }
    }
    

Picture of the output

Assignment 84