Q:

Write a C# Sharp program to create a new array from two give array of integers, each length 3

0

Write a C# Sharp program to create a new array from two give array of integers, each length 3

Sample Output:

New array: 10 20 30 40 50 60

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)
        {         
          int[] item =  test(new[] { 10, 20, 30 }, new[] { 40, 50, 60 });       
           Console.Write("New array: ");         
           foreach(var i in item)
            {
               Console.Write(i.ToString()+" ");
            }
         }        
       public static int[]  test(int[] nums1, int [] nums2)
          {
             return new int[] { nums1[0], nums1[1], nums1[2], nums2[0], nums2[1], nums2[2] };
          } 
   }
}

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