We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 371da9b commit 09b7fbdCopy full SHA for 09b7fbd
src/main/java/com/example/AppArray.java
@@ -5,8 +5,13 @@ public class AppArray {
5
public static void main(String[] args) {
6
var x=10;
7
int testearray[]= {10,30,40};
8
+ double matriz[][]={{1,2},{2,2}};
9
+ matriz[0]=new double[1];
10
+
11
+ // System.out.println(Arrays.toString(testearray));
12
+ System.out.println(Arrays.toString(matriz[0]));
13
+ System.out.println(Arrays.toString(matriz[1]));
14
- System.out.println(Arrays.toString(testearray));
15
}
16
17
0 commit comments