dragonbs

Deck of Cards

Feb 19th, 2023
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.93 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace _03._Deck_of_Cards
  6. {
  7.     internal class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             List<string> cards = Console.ReadLine().Split(", ", StringSplitOptions.RemoveEmptyEntries).ToList();
  12.             int count = int.Parse(Console.ReadLine());
  13.  
  14.             for (int i = 0; i < count; i++)
  15.             {
  16.                 List<string> command = Console.ReadLine().Split(", ", StringSplitOptions.RemoveEmptyEntries).ToList();
  17.  
  18.                 if (command.Contains("Add"))
  19.                 {
  20.                     string cardName = command[1];
  21.  
  22.                     if (cards.Contains(cardName))
  23.                     {
  24.                         Console.WriteLine("Card is already in the deck");
  25.                     }
  26.                     else
  27.                     {
  28.                         cards.Add(cardName);
  29.                         Console.WriteLine("Card successfully added");
  30.                     }
  31.                 }
  32.                 else if (command.Contains("Remove"))
  33.                 {
  34.                     string cardName = command[1];
  35.  
  36.                     if (cards.Contains(cardName))
  37.                     {
  38.                         cards.Remove(cardName);
  39.                         Console.WriteLine("Card successfully removed");
  40.                     }
  41.                     else
  42.                     {
  43.                         Console.WriteLine("Card not found");
  44.                     }
  45.                 }
  46.                 else if (command.Contains("Remove At"))
  47.                 {
  48.                     int index = int.Parse(command[1]);
  49.  
  50.                     if (index >= 0 && index < cards.Count)
  51.                     {
  52.                         cards.RemoveAt(index);
  53.                         Console.WriteLine("Card successfully removed");
  54.                     }
  55.                     else
  56.                     {
  57.                         Console.WriteLine("Index out of range");
  58.                     }
  59.                 }
  60.                 else if (command.Contains("Insert"))
  61.                 {
  62.                     int index = int.Parse(command[1]);
  63.                     string cardName = command[2];
  64.  
  65.                     if (index >= 0 && index < cards.Count)
  66.                     {
  67.                         if (cards.Contains(cardName))
  68.                         {
  69.                             Console.WriteLine("Card is already added");
  70.                         }
  71.                         else
  72.                         {
  73.                             cards.Insert(index, cardName);
  74.                             Console.WriteLine("Card successfully added");
  75.                         }
  76.                     }
  77.                     else
  78.                     {
  79.                         Console.WriteLine("Index out of range");
  80.                     }
  81.                 }
  82.             }
  83.  
  84.             Console.WriteLine(string.Join(", ", cards));
  85.         }
  86.     }
  87. }
Add Comment
Please, Sign In to add comment