配列の指定された数の要素をスキップする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
-
整数配列内のすべての重複要素を検索するC#プログラム
まず、重複する要素で配列を設定します。 int[] arr = { 24, 10, 56, 32, 10, 43, 88, 32 }; 次に、辞書を宣言し、配列をループして繰り返し要素を取得します。 var d = new Dictionary < int, int > (); foreach(var res in arr) { if (d.Cont
-
C#で指定された整数配列のすべての個別の要素を出力するC#プログラム
個別の要素を取得するために配列と辞書を設定しました。 int[] arr = { 88, 23, 56, 96, 43 }; var d = new Dictionary < int, int > (); 辞書コレクションを使用すると、リストのキーと値を取得できます。 以下は、特定の整数配列の個別の要素を表示するコードです- 例 using System; using System.Collections.Generic; namespace Dem