Assignemnt #82

Code

///colin hinton
///5th period
///Half.java
///12/2/2015

class Half
{
    public static void main (String [] args)
    {
        for (Double n = -10.0 ; n <= 10.0 ; n = n + .5)
        {
            System.out.println(n + " ");
        }
    }
}
    

Picture of the output

Assignment 1