82. Counting by Halves

Code

///Name: Tyler Hart
///Period:5
///Project Name: CountingHalves
///File Name:halves.java
///2/27/2016


public class halves
{
    public static void main( String[] args )
    {

        for ( double n = -10 ; n <= 10 ; n = n+.1 )
        {
            System.out.println( n);
        }

    }
}

    

Picture of the output