제목 : 06.3.4. 3차원 배열의 내용을 표시하는 프로그램.
//3차원 배열의 내용을 표시하는 프로그램
using System;
public class intArray
{
public static void Main()
{
// [면, 행, 열]
int [,,] intArray = new int[2, 3, 4]
{
{{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++)
{
Console.Write("{0,2} ", intArray[i, j, k]);
}
Console.Write("\n");
}
Console.Write("\n");
}
}
}