
C# Sharp Basic Algorithm Exercises: Count the number of strings with given length in given array of strings
C# Sharp Basic Algorithm: Exercise-136 with Solution
Write a C# Sharp program to count the number of strings with given length in 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 array: ");
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 array: 3
Flowchart:

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?
New Content: Composer: Dependency manager for PHP, R Programming