Assignment 84, Noticing Even Number

Code

   ///Name: Stella Koliavas
   ///Period: 5
   ///File Name: Notice.java
   ///Date Finshed: 2/18/16
   
   public class Notice
   {
    public static void main( String[] args )
    {
       
       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