Assignemnt #84 and Noticing Even Numbers

Code

  /// Name: Marco Correa
  /// Period: 5
  /// Program Name: Noticing Even Numbers
  /// File Name: Noticing Even Numbers.java
  /// Date Finished: 1/23/2016




  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

Assignment 84