Assignment #113

Code

    /// Gian Adoremos
    /// Period: 7
    /// Program Name: HundrethThirteenth Program
    /// File Name: BasicNestedLoops.java
    /// Date Finished: 4/27/16
    
    
    public class BasicNestedLoops
    {
        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