Advertisement
Suslick

Task_8

Jan 30th, 2023
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.39 KB | None | 0 0
  1.         static void Main(string[] args)
  2.         {
  3.             Random random = new Random();
  4.  
  5.             int minNumber = 5;
  6.             int maxNumber = 10;
  7.             int countElement = random.Next(minNumber, maxNumber);
  8.             int[] array = new int[countElement];
  9.             int userInput;
  10.             int countShifts;
  11.  
  12.             Console.Write("Массив: ");
  13.  
  14.             for (int i = 0; i < array.Length; i++)
  15.             {
  16.                 array[i] = random.Next(minNumber, maxNumber);
  17.  
  18.                 Console.Write(array[i] + " ");
  19.             }
  20.  
  21.             Console.WriteLine("\nВведите число для сдвига: ");
  22.             userInput = Convert.ToInt32(Console.ReadLine());
  23.  
  24.             if (userInput > array.Length)
  25.                 countShifts = userInput % array.Length;
  26.             else
  27.                 countShifts = userInput;
  28.  
  29.             if (countShifts != 0)
  30.             {
  31.                 for (int i = 0; i < array.Length - countShifts; i++)
  32.                 {
  33.                     for (int j = 0; j < array.Length - 1; j++)
  34.                     {
  35.                         int tempNumber = array[j];
  36.                         array[j] = array[array.Length - 1];
  37.                         array[array.Length - 1] = tempNumber;
  38.                     }
  39.                 }
  40.             }
  41.  
  42.             Console.WriteLine(string.Join(" ", array));
  43.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement