Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Exercises: 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() 
      {
         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));
         
    } 
}

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:

Improve this sample solution and post your code through Disqus

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.