Hi,
I am trying to create a two dimensional array with 10 columns and 15 rows, and initialize it with values 0 through 149.
this is what I have so far but I think i have to add another part but i have no idea what.. can anyone help me? thanks,
class Example2DArray {
static int [][] myArray = new int[10][15];
public static void main(String[] args) {
for(int i=0; i<149; i++)
fillArray(i);
System.out.println();
}