+ 1
Why must 4?
public class Program { public static void main(String[] args) { int[ ][ ] sample = { {1, 2, 3}, {4, 5, > int x = sample[1][0]; System.out.println(x); } } // and the output is 4
1 Answer
0
Thanks
public class Program { public static void main(String[] args) { int[ ][ ] sample = { {1, 2, 3}, {4, 5, > int x = sample[1][0]; System.out.println(x); } } // and the output is 4