Assignment #113 Coords

Code

    /// Name: DeeJay Cerezo
/// Period: 7
/// Program Name: Coords
/// File Name: Coords.java
/// Date Finished: 4/14/2016

public class Coords
{
	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

Assignment