제목 : 06.3.1. 2차원 배열을 초기화하는 프로그램 1.
글번호:
|
|
46
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2003/03/31 오후 6:30:00
|
조회수:
|
|
6419
|
//2차원 배열을 초기화하는 프로그램 1
using System;
public class intArray
{
public static void Main()
{
int [,] intArray;
intArray = new int [2, 3];
intArray[0, 0] = 1;
intArray[0, 1] = 2;
intArray[0, 2] = 3;
intArray[1, 0] = 4;
intArray[1, 1] = 5;
intArray[1, 2] = 6;
for(int i = 0; i < 2; i++)
{
for(int j = 0;j < 3; j++)
{
Console.Write("{0} ", intArray[i, j]);
}
Console.Write("\n");
}
}
}