Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C#

सी # में हाइब्रिड डिक्शनरी में कुंजी/मूल्य जोड़े की संख्या की गणना करें

HybridDictionary में की/वैल्यू पेयर की संख्या गिनने के लिए, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      HybridDictionary dict1 = new HybridDictionary();
      dict1.Add("A", "SUV");
      dict1.Add("B", "MUV");
      dict1.Add("C", "AUV");
      Console.WriteLine("HybridDictionary1 elements...");
      foreach(DictionaryEntry d in dict1){
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("Count of Key/value pairs in Dictionary1 = "+dict1.Count);
      HybridDictionary dict2 = new HybridDictionary();
      dict2.Add("1", "One");
      dict2.Add("2", "Two");
      dict2.Add("3", "Three");
      dict2.Add("4", "Four");
      dict2.Add("5", "Five");
      dict2.Add("6", "Six");
      Console.WriteLine("\nHybridDictionary2 elements...");
      foreach(DictionaryEntry d in dict2){
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("Count of Key/value pairs in Dictionary2 = "+dict1.Count);
      dict2.Clear();
      Console.WriteLine("Count of Key/value pairs in Dictionary2 (Updated) = "+dict2.Count);
   }
}

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

HybridDictionary1 elements...
A SUV
B MUV
C AUV
Count of Key/value pairs in Dictionary1 = 3

HybridDictionary2 elements...
1 One
2 Two
3 Three
4 Four
5 Five
6 Six
Count of Key/value pairs in Dictionary2 = 3
Count of Key/value pairs in Dictionary2 (Updated) = 0

उदाहरण

आइए अब एक और उदाहरण देखें -

using System;
using System.Collections;
using System.Collections.Specialized;
public class Demo {
   public static void Main(){
      HybridDictionary dict = new HybridDictionary();
      dict.Add("A", "SUV");
      dict.Add("B", "MUV");
      dict.Add("C", "AUV");
      Console.WriteLine("HybridDictionary elements...");
      foreach(DictionaryEntry d in dict){
         Console.WriteLine(d.Key + " " + d.Value);
      }
      Console.WriteLine("Count of Key/value pairs in Dictionary = "+dict.Count);
      dict.Add("D", "Utility Vehicle");
      dict.Add("E", "Convertible");
      Console.WriteLine("Count of Key/value pairs in Dictionary (Updated) = "+dict.Count);
   }
}

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

HybridDictionary elements...
A SUV
B MUV
C AUV
Count of Key/value pairs in Dictionary = 3
Count of Key/value pairs in Dictionary (Updated) = 5

  1. सी # प्रोग्राम दर्ज किए गए नंबरों में 1 की संख्या की गणना करने के लिए

    मैंने एक सरणी का उपयोग करके संख्याओं को जोड़ा है - int[] num = new int[] {1, 25, 1, 55, 1}; अब लूप करें और 1 के लिए खोजें, यदि 1 है, तो 6 तो घटना की गणना करने वाले वेरिएबल को बढ़ाएँ - foreach(int j in num) {    if (j == 1) {       cal++;    } } उदाहरण दर्ज की गई स

  1. सी # प्रोग्राम एक स्ट्रिंग में शब्दों की संख्या की गणना करने के लिए

    आइए पहले स्ट्रिंग घोषित करें - string str = "Hello World!"; अब पूरी स्ट्रिंग के माध्यम से लूप करें और व्हाइटस्पेस या टैब या न्यूलाइन कैरेक्टर खोजें - while (a <= str.Length - 1) {    if(str[a]==' ' || str[a]=='\n' || str[a]=='\t') {      

  1. जावा में संख्या गिनने के लिए प्रोग्राम को कैसे कार्यान्वित करें?

    कार्यक्रम एक JLabel . का उपयोग करता है गिनती लेबल रखने के लिए, एक JTextField संख्या रखने के लिए घटक गिनती , जेबटन बनाने के लिए घटक जोड़ें , निकालें और रीसेट करें बटन। जब हम ऐड बटन पर क्लिक करते हैं, तो JTextField में गिनती बढ़ी हुई . हो जाएगी द्वारा 1 और हटाएं बटन पर क्लिक करने से गिनती 1 से