Assignment #82 and Counting by Halves

Code

    ///Name: Tim Gibson
    ///Period: 6
    ///Project Name: Counting By Halves
    ///File Name: Halves.java
    ///Date Finished: 11/3/15
        
    public class Halves
    {
        public static void main ( String[] args )
        {
            System.out.println("X \n-----" );
            
            for ( double x = -10.0; x <= 10.0; x = x + 0.5 )
            {
                System.out.println(x);
            }
        }
    }
        

Picture of the output

Assignment82