Advertisement
Spocoman

05. Courses

Apr 8th, 2023
771
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.97 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.         public static void Main()
  10.         {
  11.             Dictionary<string, List<string>> courses = new Dictionary<string, List<string>>();
  12.  
  13.             string command;
  14.  
  15.             while ((command = Console.ReadLine()) != "end")
  16.             {
  17.                 string[] current = command.Split(" : ");
  18.  
  19.                 string course = current[0];
  20.                 string student = current[1];
  21.  
  22.                 if (!courses.ContainsKey(course))
  23.                 {
  24.                     courses.Add(course, new List<string>());
  25.                 }
  26.  
  27.                 courses[course].Add(student);
  28.             }
  29.  
  30.             foreach (var course in courses)
  31.             {
  32.                 Console.WriteLine($"{course.Key}: {course.Value.Count()}");
  33.                 Console.WriteLine($"-- {string.Join("\n-- ", course.Value)}");
  34.             }
  35.         }
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement