Assignemnt #82 and Couting By Halves

Code

/// Name: Raff Lisbona
/// Period: 6
/// Program Name: Counting by Halves
/// File Name: CountingByHalves.java
/// Date Finished: 1/26/2015
public class CountingByHalves
{
    public static void main( String[] args )
    {
        for ( double x = -10; x <= 10; x = x + .5 )
            System.out.println(x);
    }
}
    

Picture of the output

Assignment 82