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 Programming Exercises

C# Sharp Basic Algorithm Exercises: Check whether a given string starts with 'F' or ends with "B"


C# Sharp Basic Algorithm: Exercise-46 with Solution

Write a C# Sharp program to check whether a given string starts with "F" or ends with "B".

If the string starts with "F" return "Fizz" and return "Buzz" if it ends with "B" If the string starts with "F" and ends with "B" return "FizzBuzz".

In other cases return the original string.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Check whether  a given string starts with 'F' or ends with 'B'.

Sample Solution:-

C# Sharp Code:

using System;
using System.Linq;
namespace exercises
{
   class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(test("FizzBuzz"));
            Console.WriteLine(test("Fizz"));
            Console.WriteLine(test("Buzz"));
            Console.WriteLine(test("Founder"));
            Console.ReadLine();
        }
       public static string test(string str)
        {
            if (str.StartsWith("F") && str.EndsWith("B"))
            {
                return "FizzBuzz";
            }
            else if (str.StartsWith("F"))
            {
                return "Fizz";
            }
            else if (str.EndsWith("B"))
            {
                return "Buzz";
            }
            else
            {
                return str;
            }
        }
    }
}

Sample Output:

Fizz
Fizz
Buzz
Fizz

Flowchart:

C# Sharp: Flowchart: Check whether  a given string starts with 'F' or ends with 'B'.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program check if a given number is within 2 of a multiple of 10.
Next: Write a C# Sharp program to check if it is possible to add two integers to get the third integer from three given integers

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.