Advertisement
PIBogdanov

03.PhoneShop

Feb 22nd, 2023
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.31 KB | None | 0 0
  1. namespace _03.PhoneShop
  2. {
  3.     internal class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             List<string> phones = Console.ReadLine().Split(", ").ToList();
  8.  
  9.             string input;
  10.  
  11.             while ( (input = Console.ReadLine()) != "End" )
  12.             {
  13.                 string[] command = input.Split();
  14.  
  15.                 if (command[0] == "Add")
  16.                 {
  17.                     if ( !(phones.Contains(command[2])) )
  18.                     {
  19.                         phones.Add(command[2]);
  20.                     }
  21.                 }
  22.  
  23.                 else if (command[0] == "Remove")
  24.                 {
  25.                     if (phones.Contains(command[2]))
  26.                     {
  27.                         phones.Remove(command[2]);
  28.                     }
  29.                 }
  30.  
  31.                 else if ( (command[0] == "Bonus") && (command[1] == "phone") )
  32.                 {
  33.                     string newPhoneArray = command[3];
  34.  
  35.                     int indexOfTheDivider = newPhoneArray.IndexOf(":");
  36.  
  37.                     string oldPhone = "";
  38.  
  39.                     for (int i = 0; i < indexOfTheDivider; i++)
  40.                     {
  41.                         oldPhone += newPhoneArray[i];
  42.                     }
  43.  
  44.                     string newPhone = "";
  45.  
  46.                     for (int i = indexOfTheDivider + 1; i < newPhoneArray.Length; i++)
  47.                     {
  48.                         newPhone += newPhoneArray[i];
  49.                     }
  50.  
  51.                     if (phones.Contains(oldPhone))
  52.                     {
  53.                         int indexOfTheOldPhone = phones.IndexOf(oldPhone) + 1;
  54.                        
  55.                         phones.Insert(indexOfTheOldPhone, newPhone);
  56.                     }
  57.                 }
  58.  
  59.                 else if (command[0] == "Last")
  60.                 {
  61.                     if (phones.Contains(command[2]))
  62.                     {
  63.                         int indexOfThePhone = phones.IndexOf(command[2]);
  64.  
  65.                         string phoneWtihChangePosition = phones[indexOfThePhone];
  66.  
  67.                         phones.Remove(command[2]);
  68.  
  69.                         phones.Add(phoneWtihChangePosition);
  70.                     }
  71.                 }
  72.             }
  73.  
  74.             Console.WriteLine(string.Join(", ", phones));
  75.         }
  76.     }
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement