Q:

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

0

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

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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;
        }
   }
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now