C#
 Computer >> コンピューター >  >> プログラミング >> C#

配列の要素を含むリストを作成するC#プログラム


配列を設定する-

int[] val = new int[5];

// integer elements
val[0] = 15;
val[1] = 25;
val[2] = 40;
val[3] = 58;
val[4] = 70;

次に、リストを設定し、その中に配列を追加します-

List<int> myList = new List<int>(val);

以下はコードです-

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      int[] val = new int[5];
      // integer elements
      val[0] = 15;
      val[1] = 25;
      val[2] = 40;
      val[3] = 58;
      val[4] = 70;
      List<int> myList = new List<int>(val);
      Console.WriteLine("Elements...");
      foreach(int res in myList) {
         Console.WriteLine(res);
      }
      // count integer elements
      Console.WriteLine("Number of elements: "+myList.Count);
   }
}

出力

Elements...
15
25
40
58
70
Number of elements: 5

  1. リストからN個の最大の要素を見つけるPythonプログラム

    整数リストが与えられた場合、私たちのタスクはリスト内で最大のN個の要素を見つけることです。 例 Input : [40, 5, 10, 20, 9] N = 2 Output: [40, 20] アルゴリズム Step1: Input an integer list and the number of largest number. Step2: First traverse the list up to N times. Step3: Each traverse find the largest value and store it in a new list. 例 def Nnumbere

  2. 3Dリストを作成するPythonプログラム。

    3Dリストは3D配列を意味します。このプログラムでは、整数要素を使用して3D配列を作成します。 例 Input: 3× 3 × 2 [[1,1,1],[2,2,2],[3,3,3]], [[4,4,4],[5,5,5],[6,6,6]] アルゴリズム Step 1: given the order of 3D list. Step 2: using for loop we create list and print data. サンプルコード # Python program to created 3D list import pprint def print3D(i,