Assignemnt #82 COunting By Halves

Code

    ///Name: Joshua Pell
    ///Period: 6
    ///Project Name: Counting By Halves
    ///File Name: countingHalves.java
    ///Date: 3/3/2015
    
 public class countHalves
{
        public static void main( String[] args )
        {
                double x;
                
                for ( x = -10 ; x <= 10 ; x = x + .5 )
                    System.out.println( x );
        }
}
    

Picture of the output

Assignment 82