Advertisement
Spocoman

03. Phone Shop

Feb 18th, 2024
846
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.41 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4.  
  5. namespace PhoneShop
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             var phones = Console.ReadLine().Split(", ").ToList();
  12.  
  13.             string input;
  14.  
  15.             while ((input = Console.ReadLine()) != "End")
  16.             {
  17.                 var tokens = input.Split(" - ");
  18.                 string command = tokens[0], phone = tokens[1];
  19.  
  20.                 if (command == "Add" && !phones.Contains(phone))
  21.                 {
  22.                     phones.Add(phone);
  23.                 }
  24.                 else if (command == "Remove" && phones.Contains(phone))
  25.                 {
  26.                     phones.Remove(phone);
  27.                 }
  28.                 else if (command == "Bonus phone")
  29.                 {
  30.                     var models = phone.Split(':');
  31.                     string oldPhone = models[0], newPhone = models[1];
  32.                     if (phones.Contains(oldPhone))
  33.                     {
  34.                         phones.Insert(phones.IndexOf(oldPhone) + 1, newPhone);
  35.                     }
  36.                 }
  37.                 else if (command == "Last" && phones.Contains(phone))
  38.                 {
  39.                     phones.Remove(phone);
  40.                     phones.Add(phone);
  41.                 }
  42.             }
  43.  
  44.             Console.WriteLine(String.Join(", ", phones));
  45.         }
  46.     }
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement