C# 程式,用於在 C# 中列印給定整數陣列的所有不同元素


我們設定了一個數組和一個字典來獲取不同元素。

int[] arr = {
   88,
   23,
   56,
   96,
   43
};
var d = new Dictionary < int, int > ();

字典集合允許我們獲取列表的鍵和值。

以下是顯示給定整數陣列的不同元素的程式碼 −

示例

 線上演示

using System;
using System.Collections.Generic;
namespace Demo {
   public class Program {
      public static void Main(string[] args) {
         int[] arr = {
            88,
            23,
            56,
            96,
            43
         };
         var d = new Dictionary < int, int > ();
         foreach(var res in arr) {
            if (d.ContainsKey(res))
            d[res]++;
            else
            d[res] = 1;
         }
         foreach(var val in d)
         Console.WriteLine("{0} occurred {1} time", val.Key, val.Value);
      }
   }
}

輸出

88 occurred 1 time
23 occurred 1 time
56 occurred 1 time
96 occurred 1 time
43 occurred 1 time

更新時間:22-6 月-2020

449 人觀看

開啟您事業

修完本課程後,取得認證

開始學習
廣告
© . All rights reserved.