In this article, we will discuss the concept of the C++ Check whether the given alphabet is upper case or lowercase
In this post, we are going to learn how to check the given alphabet is upper case or lowercase in C++ programming language
The program allows to enter a character, thereafter it checks and displays whether the given character an upper case or lower case or not
Program 1
#include <iostream> #include <conio.h> using namespace std; int main() { char ch;//Variable declaration cout<<"Enter a character: "; cin>>ch;//store the entered character if(ch>='A' && ch<='Z'){//check upper case cout<<ch<<" is an upper case letter "; } else if(ch>='A' && ch<='z'){//check lower case cout<<ch<<" is a lower case letter "; } else{ cout<<ch<<" is not an Alphabets "; } getch(); return 0; }
When the above code is executed, it produces the following result
Case 1
Enter a character: C C is an upper case letter
Case 2
Enter a character: j j is a lower case letter
Case 3
Enter a character: * * is not an Alphabets
Approach
The program allows to enter a character, thereafter it checks and displays whether the given character an upper case or lower case
Program 2
#include <iostream> #include <conio.h> using namespace std; int main() { char ch; cout<<"Enter a character: "; cin>>ch; if(ch>=65 && ch<=90){ cout<<ch<<" is an upper case letter "; } else if(ch>=97 && ch<=122){ cout<<ch<<" is a lower case letter "; } else{ cout<<ch<<" is not an Alphabets "; } getch(); return 0; }
When the above code is executed, it produces the following result
Case 1
Enter a character: Z Z is an upper case letter
Case 2
Enter a character: k k is a lower case letter
Case 3
Enter a character: 5 5 is not an Alphabets
Approach
Suggested for you
Data type in C++ language
Similar post
Check whether the given alphabet is in upper case or lowercase in Java
Check whether the given alphabet is in upper case or lowercase in Python
Check whether the given alphabet is in upper case or lowercase in C
Explanation of one dimensional array In this post, we will discuss the concept of "Explanation…
Python program to calculate the sum of odd and even numbers in a list In…
Python code to Calculate sum of odd and even in a list In this tutorial,…
How to find reverse number using method In this article, we will discuss the concept…
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…