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

C# 배열의 요소를 끝에서 건너뛰는 프로그램

<시간/>

배열을 선언하고 요소를 초기화합니다.

int[] marks = { 45, 50, 60, 70, 85 };

SkipLast() 메서드를 사용하여 끝에서 배열 요소를 건너뜁니다.

IEnumerable<int> selMarks = marks.AsQueryable().SkipLast(3);

요소는 건너뛰고 나머지 요소는 아래와 같이 반환됩니다. -

예시

using System;
using System.Linq;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      int[] marks = { 45, 50, 60, 70, 85 };
      Console.WriteLine("Array...");

      foreach (int res in marks)
      Console.WriteLine(res);
      IEnumerable<int> selMarks = marks.AsQueryable().SkipLast(3);
      Console.WriteLine("Array after skipping last 3 elements...");

      foreach (int res in selMarks)
      Console.WriteLine(res);
   }
}

출력

Array...
45
50
60
70
85
Array after skipping last 3 elements...
45
50