Assignemnt #113 and BasicNested

Code

/// name: Leila Ordukhani
/// period: 6
/// program name: One Hundred and Three Program
/// file name: BasicNested.java
/// date finished: 4/25/16

import java.util.Scanner;

public class BasicNested
{
    public static void main( String[] args ) throws Exception
    {

            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 113