Assignment #113 and Basic Nested Loops

Code

    /// Name: Brendan Baird
    /// Period: 6
    /// Program Name: Basic Nested Loops
    /// File Name: BasicNest.java
    /// Date Finished: 2/8/2016
    
    public class BasicNest
    {
        public static void main(String[] args)
        {
            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