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
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP