Assignemnt #114

Code

          /// Name: Holden Ganch
          /// Period: 7
          /// Program Name:  sixtieth Program
          /// File Name: EnterPIN.java
          /// Date Finished: 10/5/2015


    
                     import java.util.Scanner;
public class Basic
{
	public static void main( String[] args ) throws Exception
	{
        Scanner kb = new Scanner (System.in);
        
		for ( int x=0; x < 6; x++ )
        {
			for ( int y=0; y < 6; y++ )
			{
                System.out.print("(" + x + "," + y + ") ");
				
				}
            System.out.println("");
			}
    }
		
	} 


    

Picture of the output

Assignment 114