Write a C# Sharp program to rotate the elements of a given array of integers (length 4 ) in left direction and return the new array

  • برمجة سي شارب
  • برمجة

Write a C# Sharp program to rotate the elements of a given array of integers (length 4 ) in left direction and return the new array

Test Data: 90, 30, 50, 40
Sample Output: Rotated array: 30 50 40 90
Test Data: -40, 10, -20, -10
Sample Output: Rotated array: 10 -20 -10 -40

Sample Output:

Rotated array: 20 -30 -40 10

الأجوبة

using System;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {
         
           int[] item = test(new[] { 10, 20, -30, -40 }); 
           
           Console.Write("Rotated array: ");
         
           foreach(var i in item)
            {
               Console.Write(i.ToString()+" ");
            }
        }
        
       public static int[]  test(int[] a1)
          {
             return new int[] { a1[1], a1[2], a1[3], a1[0] };
          } 
   }
} 
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...