자바 소스인데 어떤게 에러인지..?
호빵녀
2025.07.02
public class lsh3 {
public static void main(String[] args) {
int [] intAry;
for (int i=0; i intAry.length; i++)
System.out.println(intAry[i]);
}
}
이거랑
public class sfd {
public static void main(String[] args) {
int [][] intAry = new int[3][];
intAry[0] = {1, 2, 3, 4};
}}
이거랑public class jl {
int a[][] = new int[][3];
int b[][] = new int[2,3];
}이거랑
public class dgh {
int d[][] = new int[2][];
d[1] = new int[2];
d[0] = new int[3];
}
이거요 ㅠ
-
라와 2025-07-02
컴파일 해보세요~ ㅇㅅㅇ/