<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">// Let's create [1 2; 3 4] in Java

public class aoa0_blanks  {
    public static void main(String args[]) {

        // create 2x2 array:



        // create array $r0$ and store values:



        
        // create array $r1$ and store values:



        
        // store refs to arrays $r0$ and $r1$ as 
        // 1st and 2nd elements of array $a$:




        // Use $a[i][j]$ to access elements:

           for (_______ ; ___________ ; ____ ) {        // "rows"

	      for (_______ ; ___________ ; ____ )       // "cols"

		   System.out.print( ____________ ) ;   // element

	      _________________________________ ;       // skip line between rows
           }

    } // method main

} // class aoa0_blanks

/* Output
1 2 
3 4
*/
</pre></body></html>