Advertisement
Spocoman

02. Array Modifier

Nov 7th, 2023
709
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.35 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4.  
  5. namespace ArrayModifier
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             var numbers = Console.ReadLine().Split(' ')
  12.                 .Select(int.Parse)
  13.                 .ToList();
  14.  
  15.             string input;
  16.  
  17.             while ((input = Console.ReadLine()) != "end")
  18.             {
  19.                 var tokens = input.Split(' ');
  20.                 string command = tokens[0];
  21.  
  22.                 if (command == "decrease")
  23.                 {
  24.                     for (int i = 0; i < numbers.Count; i++)
  25.                     {
  26.                         numbers[i]--;
  27.                     }
  28.                 }
  29.                 else
  30.                 {
  31.                     int index1 = int.Parse(tokens[1]);
  32.                     int index2 = int.Parse(tokens[2]);
  33.  
  34.                     if (command == "swap")
  35.                     {
  36.                         int value = numbers[index1];
  37.                         numbers[index1] = numbers[index2];
  38.                         numbers[index2] = value;
  39.                     }
  40.                     else
  41.                     {
  42.                         numbers[index1] *= numbers[index2];
  43.                     }
  44.                 }
  45.             }
  46.             Console.WriteLine(String.Join(", ", numbers));
  47.         }
  48.     }
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement