///Name: Dakota Donahue ///Period: 5 ///Project Name: ///File Name: ///Date: 3/10/2016 public class XAndY { public static void main( String[] args ) { Double x = -10.0; Double y = x*x; for ( x = -10.0 ; x <= 10 ; x = x+0.5 ) { System.out.println( x + " " + y ); } } }