Advertisement
elena1234

ArrayModifier

Oct 23rd, 2020 (edited)
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.00 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace ArrayModifier
  6. {
  7.     class MainClass
  8.     {
  9.         public static void Main(string[] args)
  10.         {
  11.             List<int> numbers = Console.ReadLine().Split().Select(int.Parse).ToList();
  12.  
  13.             string command = string.Empty;
  14.  
  15.             while ((command = Console.ReadLine()) != "end")
  16.             {
  17.                 string [] commandArray = command.Split();
  18.                 if (commandArray[0] == "swap")
  19.                 {
  20.                     int index1 = int.Parse(commandArray[1]);
  21.                     int index2 = int.Parse(commandArray[2]);
  22.                     if(index1>=0 && index1<=numbers.Count-1 && index2 >= 0 && index2 <= numbers.Count - 1 && index1!=index2)
  23.                     {
  24.                         int firstElement = numbers[index1];
  25.                         int secondElement = numbers[index2];
  26.                         numbers[index1] = secondElement;
  27.                         numbers[index2] = firstElement;
  28.                     }
  29.                 }
  30.  
  31.                 else if (commandArray[0] == "multiply")
  32.                 {
  33.                     int index1 = int.Parse(commandArray[1]);
  34.                     int index2 = int.Parse(commandArray[2]);
  35.                     if (index1 >= 0 && index1 <= numbers.Count - 1 && index2 >= 0 && index2 <= numbers.Count - 1 && index1 != index2)
  36.                     {
  37.                         int firstElement = numbers[index1];
  38.                         int secondElement = numbers[index2];
  39.                         numbers[index1] = firstElement * secondElement;
  40.                     }
  41.                 }
  42.  
  43.                 else if (commandArray[0] == "decrease")
  44.                 {
  45.                     for (int i = 0; i < numbers.Count; i++)
  46.                     {
  47.                         numbers[i] = numbers[i] - 1;
  48.                     }
  49.                 }
  50.             }
  51.  
  52.             Console.WriteLine(string.Join(", ",numbers));
  53.  
  54.         }
  55.  
  56.       }
  57.  
  58.     }
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement