標題:
陣列 (四) - 三維陣列
[打印本頁]
作者:
鄭繼威
時間:
2022-12-10 09:02
標題:
陣列 (四) - 三維陣列
一個 2x3x4 的三維陣列 可存放 24 筆資料
//2x3x4
public class Ch37
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.println("n["+i+"]["+j+"]["+k+"]="+n[i][j][k]);
}
}
}
}
複製代碼
作者:
鍾易澄
時間:
2022-12-10 11:31
public class Ch02
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.println("n["+i+"]["+j+"]["+k+"]="+n[i][j][k]);
}
}
}
}
複製代碼
作者:
曾善勤
時間:
2022-12-10 11:34
public class Ch01
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int x=0; x<3; x++)
{
for(int y=0; y<4; y++)
System.out.println("n["+i+"]["+x+"]["+y+"]="+n[i][x][y]);
}
}
}
}
複製代碼
作者:
郭博鈞
時間:
2022-12-10 11:35
public class Ch02
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0;i<2;i++)
{
for(int j=0;j<3;j++)
{
for(int a=0;a<4;a++)
{
System.out.println("n["+i+"]["+j+"]["+a+"]="+n[i][j][a]);
}
}
}
}
}
複製代碼
作者:
高昀昊
時間:
2022-12-10 11:35
public class Ch36
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.println("n["+i+"]["+j+"]["+k+"]="+n[i][j][k]);
}
}
}
}
複製代碼
作者:
孫子傑
時間:
2022-12-10 11:36
public class Ch36
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0;i<=1;i++)
{
for(int j=0;j<=2;j++)
{
for(int k=0;k<=3;k++)
System.out.println("n["+i+"]["+j+"]["+k+"]="+n[i][j][k]);
}
}
}
}
複製代碼
作者:
高鋐鈞
時間:
2022-12-10 11:39
public class Ch34
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.println("n["+i+"]["+j+"]["+k+"]="+n[i][j][k]);
}
}
}
}
複製代碼
作者:
柳侑辰
時間:
2022-12-10 11:41
public class Ch03
{
public static void main(String args[])
{
int a[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0;i<2;i++)
{
for(int j=0;j<3;j++)
{
for(int k=0; k<4; k++)
System.out.println("a["+i+"]["+j+"]["+k+"]="+a[i][j][k]);
}
}
}
}
複製代碼
作者:
林紘憲
時間:
2022-12-10 11:42
//2x3x4
public class Ch37
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.println("n["+i+"]["+j+"]["+k+"]="+n[i][j][k]);
}
}
}
}
複製代碼
作者:
田家齊
時間:
2022-12-10 11:43
public class Ch08
{
public static void main(String args[])
{
int a[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int x=0;x<2;x++)
{
for(int y=0;y<3;y++)
{
for(int z=0;z<4;z++)
{
System.out.println("n["+x+"]["+y+"]["+y+"]="+a[x][y][z]);
}
}
}
複製代碼
作者:
利勁鋼
時間:
2022-12-13 18:22
public class HelloWorld
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.println("n["+i+"]["+j+"]["+k+"]="+n[i][j][k]);
}
}
}
}
複製代碼
作者:
許宸瑀
時間:
2022-12-17 10:00
public class Ch03
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{17,18,19,20},{21,22,23,24}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.println("n["+i+"]["+j+"]["+k+"]="+n[i][j][k]);
}
}
}
}
複製代碼
作者:
許馹東
時間:
2022-12-17 10:01
public class Ch01
{
public static void main(String args[])
{
int n[][][]={{{2,9,8,14,88,65},{56,97,58,59,84,87},{15,33,98,5,145,265}},
{{531,874,879,64,310,12},{541,365,55,877,101,20},{887,654,99,100,32,1}}};
for(int i=0; i<2; i++)
{
for(int j=0; j<3; j++)
{
for(int l=0; l<6; l++)
System.out.println("n["+i+"]["+j+"]["+l+"]="+n[i][j][l]);
}
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2