Assignemnt #82 Counting By 1/2s

Code

    /// Name: Drew Boxold
    /// Period: 5
    /// Program Name: Counting By 1/2s
    /// File Name: Half.java
    /// Date Finished: 3/1/2016
    
    public class Half
    {
        public static void main(String[] args)
        {
            for( double n = -10; n <= 10; n = n + 0.5 )
            {
                System.out.println(n);
            }
        }
    }
    

Picture of the output

Assignment 82