w3resource

C#: Create an array containing the middle elements of three arrays of integers

C# Sharp Basic: Exercise-52 with Solution

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

Pictorial Presentation:

>C# Sharp Exercises: Create an array containing the middle elements of three arrays of integers

Sample Solution:

C# Sharp Code:

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

public class Exercise52
{  
    public static void Main() 
    {
        // Initializing arrays
        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));

        // Creating a new array by selecting elements from respective positions of array1, array2, and array3
        int[] new_array = { array1[1], array2[1], array3[1] };
        Console.WriteLine("\nNew array: [{0}]", string.Join(", ", new_array));
    } 
}

Sample Output:

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

Flowchart:

Flowchart: C# Sharp Exercises - Create an array  containing the middle elements of three arrays of integers

C# Sharp Code Editor:

Previous: Write a C# program to get the larger value between first and last element of an array (length 3) of integers.
Next: Write a C# program to check if an array contains an odd number.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.