6, 9
2, 5
4, 6
how to initialize these number in an 2D array?
this is my answer, but something with output.
int[][] num = new int [3][2];
num[0][0] = 6;
num[0][1] = 9;
num[1][0] = 2;
num[1][1] = 5;
num[2][0] = 4;
num[2][1] = 6;
System.out.println(num);
[[I@70f87478 (output)