標題:
陣列 (四) - 三維陣列
[打印本頁]
作者:
tonyh
時間:
2019-7-4 13:06
標題:
陣列 (四) - 三維陣列
一個 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]);
}
}
}
}
複製代碼
作者:
李承洋
時間:
2019-7-4 13:38
public class Ch15 {
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]);
}
}
}
}
複製代碼
作者:
宋威廷
時間:
2019-7-4 13:39
public class CH09
{
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]);
}
}
複製代碼
作者:
葉子于
時間:
2019-7-4 13:39
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 j=0;j<3;j++)
for(int k=0;k<4;k++)
System.out.println("n["+i+"]["+j+"]["+k+"]="+n[i][j][k]);
}
}
複製代碼
作者:
古蕾娜
時間:
2019-7-4 13:39
import java.util.Scanner;
public class Ch05 {
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]);
}
}
}
}
複製代碼
作者:
李從赫
時間:
2019-7-4 13:39
public class Ch30 {
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]);
}
}
}
}
}
複製代碼
作者:
古昇暘
時間:
2019-7-4 13:39
package ok;
public class foradd2
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},
{{13,14,15,16},{16,17,18,19},{20,21,22,23}}};
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]);
}
}
}
}
}
複製代碼
作者:
李佳諭
時間:
2019-7-4 13:40
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]);
}
}
複製代碼
作者:
蔡杰恩
時間:
2019-7-4 13:40
public class Ch87 {
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]);
}
}
}
}
複製代碼
作者:
李沛儒
時間:
2019-7-4 13:40
public class Ch00
{
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("a["+x+"]["+y+"]["+z+"]="+a[x][y][z]);
}
}
複製代碼
作者:
陳柏銓
時間:
2019-7-4 13:41
public class Ch166 {
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 a=0; a<2; a++)
{
for(int b=0; b<3; b++)
{
for(int c=0; c<4; c++)
System.out.print("n["+a+"]["+b+"]["+c+"]="+n[a][b][c]+"\t");
System.out.println();
}
}
}
}
複製代碼
作者:
王煦
時間:
2019-7-4 13:41
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]) ;
}
}
}
}
複製代碼
作者:
陳璽安
時間:
2019-7-4 13:42
public class Ch14
{
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]);
}
}
複製代碼
作者:
吳庭慈
時間:
2019-7-4 13:42
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 j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.println("n["+i+"]["+j+"]["+k+"]="+n[i][j][k]);
}
}
}
}
複製代碼
作者:
陳致翰
時間:
2019-7-4 13:42
package Ch01;
import java.util.Scanner;
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 j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.println("n["+i+"]["+j+"]["+k+"]="+n[i][j][k]);
}
}
}
}
複製代碼
作者:
劉欽文
時間:
2019-7-4 13:43
public class Ch333333
{
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]);
}
}
}
}
複製代碼
作者:
蔡杰希
時間:
2019-7-4 13:47
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 j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.println("n["+i+"]["+j+"]["+k+"]="+n[i][j][k]);
}
}
}
}
複製代碼
作者:
林宥杰
時間:
2019-7-4 13:49
public class Ch01
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,0,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]);
}
}
複製代碼
作者:
陳智鈞
時間:
2019-7-4 13:49
public class Ch01
{
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]);
}
}
}
}
複製代碼
作者:
張啟廣
時間:
2019-7-4 13:50
public class Ch01
{
public static void main(String args[])
{
int i[][][]={{{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 a=0;a<2;a++)
{
for(int b=0;b<3;b++)
{
for(int c=0;c<4;c++)
System.out.println("i["+a+"]["+b+"]["+c+"]="+i[a][b][c]);
}
}
}
}
複製代碼
作者:
謝宗佑
時間:
2019-7-4 13:54
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 j=0; j<3; j++)
{
for(int k=0; k<4; k++)
System.out.println("n["+i+"]["+j+"]["+k+"]="+n[i][j][k]);
}
}
}
複製代碼
作者:
賴駿榮
時間:
2019-7-4 13:57
package 陣列;
public class ch04
{
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]);
}
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2