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 Exercises: Check if a given string contains only lowercase or uppercase characters

C# Sharp Basic: Exercise-69 with Solution

Write a C# Sharp program to check if a given string contains only lowercase or uppercase characters.

Sample Solution:

C# Sharp Code:

using System;
using System.Linq;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(test("PHP"));
            Console.WriteLine(test("python"));
            Console.WriteLine(test("JavaScript"));
        }
        public static bool test(string str1)
        {
            return str1 == str1.ToUpper() | str1 == str1.ToLower();
        }
    }
}

Sample Output:

True
True
False

Flowchart:

Flowchart: C# Sharp Exercises - Check if a given string contains only lowercase or uppercase characters.

Sample Solution-1:

C# Sharp Code:

using System;
using System.Linq;
namespace exercises
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(test("PHP"));
            Console.WriteLine(test("python"));
            Console.WriteLine(test("JavaScript"));
        }
        public static bool test(string str1)
        {
            return str1 == str1.ToUpper() || str1 == str1.ToLower();
        }
    }
}

Sample Output:

True
True
False

Flowchart:

Flowchart: C# Sharp Exercises - Check if a given string contains only lowercase or uppercase characters.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to count a specified character (both cases) in a given string.
Next: Write a C# Sharp program to remove the first and last elements from a given string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.