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 次浏览

启动你的 职业

完成课程以获得认证

开始
广告