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 Basic Algorithm Exercises: Create a new array using the first n strings from a given array of strings


C# Sharp Basic Algorithm: Exercise-137 with Solution

Write a C# Sharp program to create a new array using the first n strings from a given array of strings. (n>=1 and <=length of the array)

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Create a new array using the first n strings from a given array of strings.

Sample Solution:

C# Sharp Code:

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {               

           string[] item = test(new[] {"a", "b", "bb", "c", "ccc" }, 3);            
           Console.Write("New array: ");         
           foreach(var i in item)
            {
               Console.Write(i.ToString()+" ");
            }     

        }        
          
        static string[] test(string[] arr_str, int n)
         {
           string[] new_array = new string[n];

            for (int i = 0; i < n; i++)
            {
                new_array[i] = arr_str[i];
            }

            return new_array;
        }
    
    } 
}

Sample Output:

New array: a b bb

Flowchart:

C# Sharp: Flowchart: Create a new array using the first n strings from a given array of strings

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to count the number of strings with given length in given array of strings.
Next: Write a C# Sharp program to create a new array from a given array of strings using all the strings whose length are matched with given string length.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.