elena1234

CharRotation

Oct 3rd, 2020 (edited)
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.99 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4.  
  5. namespace CharRotation
  6. {
  7.     class MainClass
  8.     {
  9.         public static void Main(string[] args)
  10.         {
  11.  
  12.             string text = Console.ReadLine();
  13.             List<int> numbers = Console.ReadLine().Split().Select(int.Parse).ToList();
  14.             List<char> result = new List<char>();
  15.             for (int i = 0; i <numbers.Count ; i++)
  16.             {
  17.                if(numbers[i] % 2 == 0)
  18.                 {
  19.                     int value = (int) text[i] - numbers[i];
  20.                     char resultValue = (char)value;
  21.                     result.Add(resultValue);
  22.                 }
  23.                 else
  24.                 {
  25.                     int value = (int)text[i] + numbers[i];
  26.                     char resultValue = (char)value;
  27.                     result.Add(resultValue);
  28.                 }
  29.             }
  30.  
  31.             Console.WriteLine(string.Join("",result));
  32.  
  33.         }
  34.  
  35.       }
  36.  
  37.     }
  38.  
  39.  
  40.  
  41.  
Add Comment
Please, Sign In to add comment