Advertisement
elena1234

Courses*

Oct 29th, 2020 (edited)
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.39 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace Courses
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             var registrationDictionary = new Dictionary<string, List<string>>();
  12.             string command = string.Empty;
  13.             while ((command = Console.ReadLine()) != "end")
  14.             {
  15.                 string[] commandArray = command.Split(" : ");
  16.                 string course = commandArray[0];
  17.                 string student = commandArray[1];
  18.                 if (registrationDictionary.ContainsKey(course) == false)
  19.                 {
  20.                     registrationDictionary[course] = new List<string>();
  21.                     registrationDictionary[course].Add(student);
  22.                 }
  23.  
  24.                 else
  25.                 {
  26.                     registrationDictionary[course].Add(student);
  27.                 }
  28.             }
  29.  
  30.             foreach (var kvp in registrationDictionary.OrderByDescending(x=>x.Value.Count()))
  31.             {
  32.                 string course = kvp.Key;
  33.                 var listOfStudents = kvp.Value;
  34.                 Console.WriteLine($"{course}: {listOfStudents.Count()}");
  35.                 foreach (var students in listOfStudents.OrderBy(x=>x))
  36.                 {
  37.                     Console.WriteLine($"-- {students}");
  38.                 }
  39.             }
  40.         }
  41.       }
  42.     }
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement