Show the output of the following code:
int[][] array = {{1, 2}, {3, 4}, {5, 6}};int sum = 0;for (int i = 0; i<array.length; i++) sum += array[i][0];System.out.println(sum);
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.