Advertisement
Spocoman

06. List Manipulation Basics

Feb 1st, 2022
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.53 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace ListManipulationBasics
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             List<int> num = Console.ReadLine()
  12.                 .Split()
  13.                 .Select(int.Parse)
  14.                 .ToList();
  15.  
  16.             while (true)
  17.             {
  18.                 string line = Console.ReadLine().ToLower();
  19.  
  20.                 if (line == "end")
  21.                 {
  22.                     break;
  23.                 }
  24.  
  25.                 string[] tokens = line.Split();
  26.  
  27.                 switch (tokens[0])
  28.                 {
  29.                     case "add":
  30.                         int numToAdd = int.Parse(tokens[1]);
  31.                         num.Add(numToAdd);
  32.                         break;
  33.                     case "remove":
  34.                         int numToRemove = int.Parse(tokens[1]);
  35.                         num.Remove(numToRemove);
  36.                         break;
  37.                     case "removeat":
  38.                         int indexToRemoveAt = int.Parse(tokens[1]);
  39.                         num.RemoveAt(indexToRemoveAt);
  40.                         break;
  41.                     case "insert":
  42.                         int numToInsert = int.Parse(tokens[1]);
  43.                         int indexToInsert = int.Parse(tokens[2]);
  44.                         num.Insert(indexToInsert, numToInsert);
  45.                         break;
  46.                 }
  47.             }
  48.             Console.WriteLine(string.Join(' ', num));
  49.  
  50.         }
  51.     }
  52. }
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement