/// Name: Ali Kurland /// Period: 6 /// Program Name: Noticing Even Numbers /// File Name: NoticingEvens.java /// Date Finished: 10/26/2015 public class NoticingEvens { 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 ); } } } }