elena1234

CountRealNumbers-withSortedDictionary

Oct 25th, 2020 (edited)
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.89 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace CountRealNumbers
  6. {
  7.     class MainClass
  8.     {
  9.         public static void Main()
  10.         {
  11.             List<int> listOfNumbers = Console.ReadLine().Split().Select(int.Parse).ToList();
  12.             SortedDictionary<int, int> sortedDict = new SortedDictionary<int, int>();
  13.             for (int i = 0; i <= listOfNumbers.Count - 1; i++)
  14.             {
  15.                 if (sortedDict.ContainsKey(listOfNumbers[i]) == false)
  16.                 {
  17.                     sortedDict[listOfNumbers[i]] = 1;
  18.                 }
  19.  
  20.                 else
  21.                 {
  22.                     sortedDict[listOfNumbers[i]]++;
  23.                 }
  24.             }
  25.  
  26.             foreach (var item in sortedDict)
  27.             {
  28.                 Console.WriteLine($"{item.Key} -> {item.Value}");
  29.             }
  30.  
  31.         }
  32.  
  33.       }
  34.  
  35.     }
  36.  
Add Comment
Please, Sign In to add comment