Example, I have an array of two dimensions of type int:
int array[][] = new int[10][10];
How do I set the value of, for example [2] [3], [6] [7] and [1] [9] to some even int, without having to define one at a time like this:
array[2][3] = -1;
array[6][7] = -1;
array[1][9] = -1;