///Name: Ali Kurland /// Period: 6 /// Program Name: Basic Nested Loops /// File Name: Coords.java /// Date Finished: 2/4/2016 public class Coords { public static void main( String[] args ) { for ( int x=0; x<=5; x++ ) { for ( int y=0; y<=5; y++ ) { System.out.print( "(" + x + "," + y + ") " ); } System.out.println(); } } }