Assignment 113: Coords

Code

  ///Name: Ryan McAteer
  ///Period: 5
  ///Project Name: Coords
  ///File Name: Assignment113.java
  ///Date: 5/2/2016
    
public class Assignment113
{
	public static void main( String[] args ) throws Exception
	{
		System.out.println();
		for ( int i = 0; i < 6; i++)
		{
			for ( int j = 0; j < 6; j++)
			{
				System.out.print("(" + i + "," + j + ")");
			}
			System.out.println();
		}
		System.out.println();
	}
}

    

Picture of the output

This Should Work