Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int [] array = new int[] { 1, 2, 3, 4 };
- Console.Write("Сдвиг влево: ");
- int command = Convert.ToInt32(Console.ReadLine());
- foreach (var arrays in array)
- {
- Console.Write($"{arrays} ");
- }
- Console.WriteLine();
- for (int i = command; i < array.Length; i++)
- {
- Console.Write($"{array[i]} ");
- }
- for (int i = 0; i < command; i++)
- {
- Console.Write($"{array[i]} ");
- }
Advertisement
Add Comment
Please, Sign In to add comment