標題:
陣列 (四) - 三維陣列
[打印本頁]
作者:
tonyh
時間:
2019-8-6 13:11
標題:
陣列 (四) - 三維陣列
一個 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-8-6 13:31
public class Ch10
{
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-8-6 13:31
public class Ch02
{
public static void main(String args[])
{
int p[][][]={{{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+"]="+p[i][j][k]);
}
}
}
複製代碼
作者:
張郁庭
時間:
2019-8-6 13:32
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-8-6 13:34
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]));
}
}
複製代碼
作者:
許育慈
時間:
2019-8-6 13: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 j=0;j<3;j++)
for(int k=0;k<4;k++)
System.out.println("n["+i+"]["+j+"]["+k+"]="+n[i][j][k]);
}
}
複製代碼
作者:
張書涵
時間:
2019-8-6 13:35
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-8-6 13:35
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 k=0; k<2; k++)
{
for(int j=0; j<3; j++)
{
for(int i=0; i<4; i++)
{
System.out.println("n["+k+"]["+j+"]["+i+"]="+n[k][j][i]);
}
}
}
}
}
複製代碼
作者:
潘憶承
時間:
2019-8-6 13:36
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-8-6 13:37
public class Ch10
{
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-8-6 13:37
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-8-6 13:37
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-8-6 13:38
public class Ch00 {
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-8-6 13:39
import java.util.Scanner;
public class Ch11
{
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 f=0;f<2;f++)
{
for(int i=0;i<3;i++)
{
for (int j=0;j<4;j++)
{
System.out.println("a["+f+"]["+i+"]["+j+"]="+a[f][i][j]);
}
}
}
}
}
複製代碼
作者:
鄭宇崴
時間:
2019-8-6 13:40
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-8-6 13:41
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-8-6 13:42
public class Ch23
{
pu[code]blic 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
[j][k]);
}
}
}
}[/code]
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2