Advertisement
elena1234

HouseParty

Nov 1st, 2020 (edited)
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.46 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5.  
  6. namespace HouseParty
  7. {
  8.     class MainClass
  9.     {
  10.         public static void Main(string[] args)
  11.         {
  12.             int numbersOfCommand = int.Parse(Console.ReadLine());
  13.             List<string> guests = new List<string>();
  14.  
  15.             for (int i = 0; i < numbersOfCommand; i++)
  16.             {
  17.               string command = Console.ReadLine();
  18.                 string[] commandArray = command.Split().ToArray();
  19.                 string name = commandArray[0];
  20.                
  21.                 if (commandArray.Count() == 3)
  22.                 {
  23.                     if (guests.Contains(name)==false)
  24.                     {
  25.                         guests.Add(name);
  26.                     }
  27.  
  28.                     else
  29.                     {
  30.                         Console.WriteLine($"{name} is already in the list!");
  31.                     }
  32.  
  33.                 }
  34.  
  35.                 else if (commandArray.Count() == 4)
  36.                 {
  37.                     if (guests.Contains(name))
  38.                     {
  39.                         guests.Remove(name);
  40.  
  41.                     }
  42.                     else
  43.                     {
  44.                         Console.WriteLine($"{name} is not in the list!");
  45.                     }
  46.  
  47.                 }
  48.  
  49.             }
  50.  
  51.             foreach (var item in guests)
  52.             {
  53.                 Console.WriteLine(item);
  54.             }
  55.         }
  56.     }
  57.      }
  58.  
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement