Write a C# Sharp program to create a new array swapping the first and last elements of a given array of integers and length will be least 1

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

Write a C# Sharp program to create a new array swapping the first and last elements of a given array of integers and length will be least 1

Sample Output:

After swapping first and last elements: 13 5 7 9 11 1

الأجوبة

using System;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {          
          int[] item = test(new[] { 1, 5, 7, 9, 11, 13 }); 
          Console.Write("After swapping first and last elements: ");         
           foreach(var i in item)
            {
               Console.Write(i.ToString()+" ");
            }               
        }        
       static int[] test(int[] numbers)
          {
           int first = numbers[0];
            numbers[0] = numbers[numbers.Length - 1];
            numbers[numbers.Length - 1] = first;

            return numbers;
          } 
   }
}
هل كان المحتوى مفيد؟

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

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