Advertisement
elena1234

CountCharsInAString

Oct 27th, 2020 (edited)
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.88 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace CountCharsInAString
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             string text = Console.ReadLine();
  11.             var dictionaryCount = new Dictionary<char, int>();      
  12.             for (int i = 0; i < text.Length; i++)
  13.             {
  14.                 if(text[i]!=' ')
  15.                 {
  16.                     if (dictionaryCount.ContainsKey(text[i]) == false)
  17.                     {
  18.                         dictionaryCount[text[i]] = 1;
  19.                     }
  20.  
  21.                     else
  22.                     {
  23.                         dictionaryCount[text[i]]++;
  24.                     }
  25.  
  26.                 }
  27.             }
  28.  
  29.             foreach (var kvp in dictionaryCount)
  30.             {
  31.                 Console.WriteLine($"{kvp.Key} -> {kvp.Value}");
  32.             }
  33.         }
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement