Assignment #84 and Noticing Even Numbers

Code

    /// Name: Lauren Baird
    /// Period: 7
    /// Program Name: Noticing Even Numbers
    /// File Name: NEN.java
    /// Date Finished: 11/20/2015
    
    import java.util.Scanner;
    
    public class NEN
    {
        public static void main( String[] args )
        {
            Scanner keyboard = new Scanner(System.in);
            
            System.out.println();
            
            for ( int n = 1 ; n <= 20 ; n = n+1 )
            {
                if ( n%2 == 0 )
                {
                    System.out.println( n + " < " );
                }
                
                else
                {
                    System.out.println( n );
                }
            }
        }
    }  
    

Picture of the output

Assignment #84