///Name: Ilana Levy ///Period:5 ///Program Name: Noticing Even Numbers ///File Name: evenNumbers.java ///Date Finished: 9/28/2015 public class evenNumbers { public static void main( String[] args ) { int x; for (x = 1 ; x <= 20; x = x + 1 ) { if ( x % 2 == 0 ) System.out.println( x + " it's even better " ); else System.out.println( x ); } } }