Assignment #82 and Counting by halves

Code

    //Name: Mark Katz
    ///Period: 6
    ///Program Name: Counting Machine Revisited
    ///File Name: countrev.java
    ///Date Finished: 11/5/15 


public class halves
{
    public static void main( String[] args )
    {
        
        for ( double x = -10; x <= 10; x = x + .5 )
        {
            System.out.println( x + " " );
        }
    }
}

    

Picture of the output

Assignment81