Assignment 83

Code

    /// Gian Adoremos
    /// Period: 7
    /// Program Name: EightyThird Program
    /// File Name: xy.java
    /// Date Finished: 1/14/2016
    
public class xy
{
    public static void main( String[] args )
    {

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

    }
}
 

Picture of the output

Assignment 83