Assignemnt #113 and Nest

Code

    ///Name: Luke Shin
    ///Period: 7
    ///Project Name: Nest
    ///File Name: Nest.java
    ///Date: 03/20/2016
    
public class Nest {
    public static void main(String[] args){
        for ( int x = 0; x <= 5; x++ ){
            for ( int y = 0; y <= 5; y++ ) {
            System.out.print("("+x+","+y+") ");
            }
            System.out.println();

        }
            System.out.println("\n");
    }
}

    

Picture of the output

Assignment 113