When trying to execute the following snippet:
int[] vetor = {1, 2, 3, 4, 5, 6};
System.out.println(Arrays.toString(vetor));
The array is normally displayed as [1, 2, 3, 4, 5, 6] but if I try with a two-dimensional array, as follows:...
asked by
14.01.2017 / 14:28