Write a C# Sharp program to create a new array taking the first two elements from a given array. If the length of the given array is less than 2 then return the give array

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

Write a C# Sharp program to create a new array taking the first two elements from a given array. If the length of the given array is less than 2 then return the give array

Sample Output:

New array: 1 5

الأجوبة

using System;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {          
          //  Console.WriteLine(test(new[] {1}));
          //  Console.WriteLine(test(new[] {1,2,9}));
          //  Console.WriteLine(test(new[] {1,2,9,3,3}));
             
          int[] item = test(new[] { 1, 5, 7, 9, 11, 13 }); 
          Console.Write("New array: ");         
           foreach(var i in item)
            {
               Console.Write(i.ToString()+" ");
            }               

        }        
       static int[] test(int[] numbers)
          {
            int[] front_nums;

            if (numbers.Length >= 2)
            {
                front_nums = new int[] { numbers[0], numbers[1] };
            }
            else if (numbers.Length > 0)
            {
                front_nums = new int[] { numbers[0] };
            }
            else
            {
                front_nums = new int[0];
            }

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

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

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