Assignemnt #84 Noticing Even Numbers

Code

    ///Name: Joshua Pell
    ///Period: 6
    ///Project Name: Noticing Even Numbers 
    ///File Name: evenNumbers.java
    ///Date: 3/3/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 );
                }
        }
}
    

Picture of the output

Assignment 84