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: Count the number of strings of specified length in a given array of strings


C# Sharp Basic Algorithm: Exercise-136 with Solution

Write a C# Sharp program to count the number of strings of specified length in 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)
        { 
		   Console.WriteLine("Number of Strings: ");               
           Console.WriteLine(test(new[] {"a", "b", "bb", "c", "ccc" }, 1)); 
        }                  
        static int test(string[] arr_str, int len)
         {
           int ctr = 0;

            for (int i = 0; i < arr_str.Length; i++)
            {
                if (arr_str[i].Length == len) ctr++;
            }
            return ctr;
        }    
    } 
}

Sample Output:

Number of Strings: 
3

Flowchart:

C# Sharp: Flowchart: Count the number of strings of specified length in 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 find the larger average value between the first and the second half of a given array of integers and minimum length is atleast 2. Assume that the second half begins at index (array length)/2.
Next: 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)

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.