Assignemnt #113 and 114th program

Code

///Name: Derrick Andreasen
///Period: 7
///Program name: 114th Program
///File name: Hund13prog.java
///Date Finished:4/20/2016

import java.util.Scanner;

public class Hund13prog
{
	public static void main( String[] args ) throws Exception
	{
        System.out.println();
        
            for(int a = 0; a < 6; a++)
            {
                for(int b = 0; b < 6; b++)
                {
                    System.out.print(" (" + a + "," + b +")");
                }
                
                System.out.println();
            }
        }
    }
    

Picture of the output

Assignment 114