標題:
陣列 (四) - 三維陣列
[打印本頁]
作者:
tonyh
時間:
2021-1-26 11:36
標題:
陣列 (四) - 三維陣列
一個 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]);
}
}
}
}
複製代碼
作者:
劉凱閔
時間:
2021-1-26 11:51
public class Ch06 {
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]);
}
}
}
}
複製代碼
作者:
吳聲寬
時間:
2021-1-26 11:56
public class Ch11
{
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]);
}
}
複製代碼
作者:
卓炘暘
時間:
2021-1-26 11:57
public class Ch01
{
public static void main(String args[])
{
int n[][][]={{{1,2,3,4},{5,6,7,8},{9,10,11,12}},{{1,2,3,4},{5,6,7,8},{9,10,11,12}}};
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]);
}
}
複製代碼
作者:
李柏穎
時間:
2021-1-26 11:57
public class Ch03
{
public static void main(String[] args)
{
int c[][][]={{{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("c["+i+"]"+"["+j+"]"+"["+k+"]"+"="+c[i][j][k]);
}
}
複製代碼
作者:
王博裕
時間:
2021-1-26 11:58
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]);
}
}
}
}
複製代碼
作者:
楊小萱
時間:
2021-1-26 12:01
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]);
}
}
複製代碼
作者:
王睿宇
時間:
2021-1-26 12:04
public class A01 {
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}}};
for(int i=0; i<=2; i+=1){
for(int j=0; j<=2; j+=1){
for(int k=0; k<=1; k+=1){
System.out.println("A["+i+"]["+j+"]["+k+"]="+A[i][j][k]);
}
}
}
}
}
複製代碼
作者:
藍健洲
時間:
2021-1-26 12:05
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]);
}
}
複製代碼
作者:
紀承典
時間:
2021-1-26 12:06
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]);
}
}
}
}
複製代碼
作者:
楊澤全
時間:
2021-1-26 12:33
public class Ch06
{
public static void main(String args[])
{
int a[][][]=new int[2][3][4];
int b=0;
for(int i=0;i<=1;i++)
{
for(int j=0;j<=2;j++)
{
for(int k=0;k<=3;k++)
{
b=b+1;
a[i][j][k]=b;
System.out.println("n["+i+"]["+j+"]["+k+"]="+a[i][j][k]);
}
}
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2