Assignemnt #83 Xs And Ys

Code

    ///Name: Joshua Pell
    ///Period: 6
    ///Project Name: Xs and Ys
    ///File Name: xy.java
    ///Date: 3/3/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 );
                }
        }
}
    

Picture of the output

Assignment 83