Prog 83: Xs and Ys

///Name: Ilana Levy
///Period: 5
///Program Name: Xs and Ys
///File Name: xy.java
///Date Finished: 9/25/2015

public class xy
{
        public static void main( String[] args )
        {
                double x, y;
                
                for ( x = -10 ; x <= 10 ; x = x + 1 )
                {
                    y = x * x ;
                    System.out.println( x + "\t" + y );
                }
        }
}