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