Advertisement
Spocoman

02. Shopping List

Nov 9th, 2023
536
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.25 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ShoppingList
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             var list = Console.ReadLine().Split('!').ToList();
  10.  
  11.             string input;
  12.  
  13.             while ((input = Console.ReadLine()) != "Go Shopping!")
  14.             {
  15.                 var tokens = input.Split(' ');
  16.                 string command = tokens[0];
  17.                 string product = tokens[1];
  18.  
  19.                 if (command == "Urgent" && !list.Contains(product))
  20.                 {
  21.                     list.Insert(0, product);
  22.                 }
  23.                 else if (command == "Unnecessary" && list.Contains(product))
  24.                 {
  25.                     list.Remove(product);
  26.                 }
  27.                 else if (command == "Correct" && list.Contains(product))
  28.                 {
  29.                     string newProduct = tokens[2];
  30.                     list[list.IndexOf(product)] = newProduct;
  31.                 }
  32.                 else if (command == "Rearrange" && list.Contains(product))
  33.                 {
  34.                     list.Remove(product);
  35.                     list.Add(product);
  36.                 }
  37.             }
  38.            
  39.             Console.WriteLine(String.Join(", ", list));
  40.         }
  41.     }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement