Assignment #113 and Basic Nested Loops

Code

                        /// Name: Graham Pollock
                        /// Period: 5
                        /// Program Name: BNL
                        /// File Name: BNL.java
                        /// Date Finished: 04/21/2016/

     public class BNL
    {
        public static void main(String[] args)
        {
            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