Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

โปรแกรม C# พิมพ์ซ้ำจากรายการจำนวนเต็ม


หากต้องการพิมพ์รายการที่ซ้ำกันจากรายการจำนวนเต็ม ให้ใช้ประกอบด้วยคีย์

ด้านล่างนี้ เราได้ตั้งค่าจำนวนเต็มแล้ว

int[] arr = {
   3,
   6,
   3,
   8,
   9,
   2,
   2
};

จากนั้นคอลเล็กชันพจนานุกรมจะใช้เพื่อรับจำนวนเต็มซ้ำกัน

ให้เราดูโค้ดเพื่อรับจำนวนเต็มซ้ำกัน

ตัวอย่าง

using System;
using System.Collections.Generic;

namespace Demo {
   public class Program {
      public static void Main(string[] args) {
         int[] arr = {
            3,
            6,
            3,
            8,
            9,
            2,
            2
         };
         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} times", val.Key, val.Value);
      }
   }
}

ผลลัพธ์

3 occurred 2 times
6 occurred 1 times
8 occurred 1 times
9 occurred 1 times
2 occurred 2 times