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

C#을 사용하여 배열에서 마지막 요소를 가져오는 프로그램

<시간/>

배열을 선언하고 요소를 추가하십시오.

int[] val = { 5, 8, 15, 25, 40, 55, 80, 100 };

이제 Queryable Last() 메서드를 사용하여 마지막 요소를 가져옵니다.

val.AsQueryable().Last();

전체 코드를 살펴보겠습니다.

예시

using System;
using System.Collections.Generic;
using System.Linq;
class Demo {
   static void Main() {
      int[] val = { 5, 8, 15, 25, 40, 55, 80, 100 };
      int last_num = val.AsQueryable().Last();
      Console.WriteLine("Last element: "+last_num);
   }
}

출력

Last element: 100