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-Jun-2020

449 次瀏覽

啟動你的 職業

完成課程以獲得認證

開始
廣告
© . All rights reserved.