/// Name: Sam Menar /// Period: 6 /// Program Name: Xs and Ys /// File Name: Xs and Ys.java /// Date Finished: 2/29/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); } } }