Q:

Write a C# program to create a new array of length containing the middle elements of three arrays (each length 3) of integers

0

Write a C# program to create a new array of length containing the middle elements of three arrays (each length 3) of integers

Sample Output:

Array1: [1, 2, 5]                                                      
                                                                       
Array2: [0, 3, 8]                                                      
                                                                       
Array3: [-1, 0, 2]                                                     
                                                                       
New array: [2, 3, 0]

All Answers

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

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

public class Exercise52
{  
   public static void Main() 
      {
         int[] array1 = {1, 2, 5};
         Console.WriteLine("\nArray1: [{0}]", string.Join(", ", array1));
         int[] array2 = {0, 3, 8};
         Console.WriteLine("\nArray2: [{0}]", string.Join(", ", array2));
         int[] array3 = {-1, 0, 2};
         Console.WriteLine("\nArray3: [{0}]", string.Join(", ", array3));
         int[] new_array = { array1[1], array2[1], array3[1] };
         Console.WriteLine("\nNew array: [{0}]", string.Join(", ", new_array));
         
    } 
}

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