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: Check whether a given string contain the character 'z' from 2 to 4 times


C# Sharp Basic Algorithm: Exercise-22 with Solution

Write a C# Sharp program to check whether a given string contain the character 'z' from 2 to 4 times.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Check if a given string contains between 2 and 4 'z' character.

Sample Solution:

C# Sharp Code:

using System;
namespace exercises
{
   class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(test("frizz"));
            Console.WriteLine(test("zane"));
            Console.WriteLine(test("Zazz"));
            Console.WriteLine(test("false"));
            Console.WriteLine(test("zzzz"));
            Console.WriteLine(test("ZZZZ"));
            Console.ReadLine();
        }
   public static bool test(string str)
        {
            int ctr = 0;
            for (int i = 0; i < str.Length; i++)
            {
                if (str[i] == 'z')
                {
                    ctr++;
                }
            }
            return ctr > 1 && ctr <= 4;
        }
    }
}

Sample Output:

True
False
True
False
True
False

Flowchart:

C# Sharp: Flowchart: Check if a given string contains between 2 and 4 'z' character).

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to find the larger value from two positive integer values that is in the range 20..30 inclusive, or return 0 if neither is in that range.
Next: Write a C# Sharp program to check if two given non-negative integers have the same last digit

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.