83. x's and y's

Code


///Name: Tyler Hart
///Period:5
///Project Name: x's and y's
///File Name:xy.java
///2/27/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