Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#의 1차원 배열에서 지정된 위치의 요소에 값을 설정하는 방법

<시간/>

먼저 배열을 설정하십시오 -

int[] p = new int[] {55, 66, 88, 99, 111, 122, 133};

이제 위치 1 −

에 요소를 설정해야 한다고 가정해 보겠습니다.
p[2] = 77;

전체 코드를 보자 -

using System;

namespace Program {
   public class Demo {
      public static void Main(string[] args) {
         int[] p = new int[] {55, 66, 88, 99, 111, 122, 133};
         int j;

         Console.WriteLine("Initial Array......");
         for (j = 0; j < p.Length; j++ ) {
            Console.WriteLine("arr[j] = {0}", p[j]);
         }
         // set new element at index 2
         p[2] = 77;

         Console.WriteLine("New Array......");
         for (j = 0; j < p.Length; j++ ) {
            Console.WriteLine("arr[j] = {0}", p[j]);
         }
      }
   }
}

출력

Initial Array......
arr[j] = 55
arr[j] = 66
arr[j] = 88
arr[j] = 99
arr[j] = 111
arr[j] = 122
arr[j] = 133
New Array......
arr[j] = 55
arr[j] = 66
arr[j] = 77
arr[j] = 99
arr[j] = 111
arr[j] = 122
arr[j] = 133