Advertisement
Spocoman

04. Array Rotation

Jan 21st, 2022
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.19 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace ArrayRotation
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             string[] str = Console.ReadLine().Split();
  11.             int n = int.Parse(Console.ReadLine());
  12.  
  13.             for (int i = 0; i < n; i++)
  14.             {
  15.                 string rotation = str[0];
  16.                 for (int j = 1; j < str.Length; j++)
  17.                 {
  18.                     string current = str[j];
  19.                     str[j - 1] = current;
  20.                 }
  21.                 str[str.Length - 1] = rotation;
  22.             }
  23.             Console.WriteLine(string.Join(' ', str));
  24.         }
  25.     }
  26. }
  27.  
  28. Решение с List:
  29.  
  30. using System;
  31. using System.Collections.Generic;
  32. using System.Linq;
  33.  
  34. namespace ArrayRotation
  35. {
  36.     class Program
  37.     {
  38.         static void Main(string[] args)
  39.         {
  40.             List<string> str = Console.ReadLine().Split().ToList();
  41.             int n = int.Parse(Console.ReadLine());
  42.  
  43.             for (int i = 0; i < n; i++)
  44.             {
  45.                 str.Add(str[0]);
  46.                 str.RemoveAt(0);
  47.             }
  48.             Console.WriteLine(string.Join(' ', str));
  49.         }
  50.     }
  51. }
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement