Array Rotation C# Fundamentals - Exercise
Здравейте. Някой би ли могъл да помогне за решаването на тази задачка?
Write a program that receives an array and number of rotations you have to perform (first element goes at the end) Print the resulting array.
Examples
Input |
Output |
51 47 32 61 21 2 |
32 61 21 51 47 |
32 21 61 1 4 |
32 21 61 1 |
2 4 15 31 5 |
4 15 31 2
|
Много благодаря за изчерпателния отговор. :)