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

C# 배열의 지정된 수의 요소를 건너뛰는 프로그램

<시간/>

다음은 우리의 배열입니다 -

int[] points = { 210, 250, 300, 350, 420};

skip() 메서드를 사용하여 요소를 건너뜁니다. 반환할 요소의 수를 표시하는 인수로 숫자를 추가합니다.

IEnumerable<int> skipEle = points.AsQueryable().OrderByDescending(s => s).Skip(3);

예시

using System;
using System.Linq;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      int[] points = { 210, 250, 300, 350, 420};
      Console.WriteLine("Initial array...");
   
      foreach (int res in points)
      Console.WriteLine(res);
      IEnumerable<int> skipEle = points.AsQueryable().OrderByDescending(s => s).Skip(3);
      Console.WriteLine("Skipped 3 elements...");

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

출력

Initial array...
210
250
300
350
420
Skipped 3 elements...
250
210