배열은 데이터 모음을 저장하는 데 사용되지만 종종 배열을 인접한 메모리 위치에 저장된 동일한 유형의 변수 모음으로 생각하는 것이 더 유용합니다.
1차원 배열을 정의하려면 -
int[] runs = new int[10];
이제 같은 줄에서 배열을 초기화합시다 -
int[] runs = new int[5] {125, 173, 190, 264, 188};
다음은 배열을 선언, 초기화 및 표시하는 방법을 보여주는 예입니다. −
예시
using System; namespace Program { class Demo { static void Main(string[] args) { int[] runs = new int[5] {125, 173, 190, 264, 188}; int i,j; for (j = 0; j < 5; j++ ) { Console.WriteLine("Innings score of Cricketer[{0}] = {1}", j, runs[j]); } Console.ReadKey(); } } }
출력
Innings score of Cricketer[0] = 125 Innings score of Cricketer[1] = 173 Innings score of Cricketer[2] = 190 Innings score of Cricketer[3] = 264 Innings score of Cricketer[4] = 188