Assignment 82

Code

    /// Gian Adoremos
    /// Period: 7
    /// Program Name: EightySecond Program
    /// File Name: halves.java
    /// Date Finished: 1/14/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

Assignment 82