/home/caleb/ASDV-Java/Assignments/lab12_CalebFontenot/src/lab12_calebfontenot/ForNested1.java
/*
 * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
 * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
 */
package lab12_calebfontenot;

/**
 *
 * @author caleb
 */
public class ForNested1 {
    public static void main(String[] args)
    {
        for (int i = 0; i < 3; ++i)
        {
            System.out.print("(i, j) = ");
            for (int j = 0; j < 4; ++j)
            {
                System.out.print("(" + i + ", " + j + ") ");
            }
            System.out.println("");
        }
    }
}