Assignemnt #83 and Xs and Ys

Code

/// Name: Raff Lisbona
/// Period: 6
/// Program Name: Xs and Ys
/// File Name: Xs and Ys.java
/// Date Finished: 1/26/2015
public class XsandYs
{
    public static void main( String[] args )
    {
        System.out.println("x\ty");
        System.out.println("-------------------");
        
        for ( double x = -10; x <= 10; x = x + .5 )
        {
            double y = x * x;
            System.out.println(x + "\t" + y);
        }
    }
}
    

Picture of the output

Assignment 8