Assignment #83 and XsAndYs

Code

      /// Name: Jason Kim
      /// Period: 7
      /// Program Name: XsAndYs
      /// File Name: XsAndYs.java
      /// Date Finished:11/30/15
      
      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 + 0.5)
              {
                  double y = x*x;
                  System.out.println(x + "\t" + y);
                  
              }
          }
      }
    

Picture of the output

Assignment83