먼저 배열을 정의하고 초기화하십시오 -
int[] p = new int[3] {99, 92, 95};
이제 배열 요소를 표시하십시오 -
for (j = 0; j < 3; j++ ) { Console.WriteLine("Price of Product[{0}] = {1}", j, p[j]); }
요소에 액세스하려면 다음과 같이 원하는 요소의 인덱스를 포함하기만 하면 됩니다. -
p[2];
위는 세 번째 요소에 액세스하는 것입니다.
이제 전체 코드를 살펴보겠습니다 -
예
using System; namespace Program { class Demo { static void Main(string[] args) { int[] p = new int[3] {99, 92, 95}; int j; for (j = 0; j < 3; j++ ) { Console.WriteLine("Price of Product[{0}] = {1}", j, p[j]); } // access int e = p[2]; Console.WriteLine("Product 3rd price: "+e); Console.ReadKey(); } } }