03/03/2015

C++ Program To Check Upper Case Lower Case Digit And Special Symbol

Problem :- Write A Program To Check Upper case Lower case Digit And Special Symbol .

Logic :- This is a simple logic we check all the thing with ASCII value or Character we put condition like if character ASCII value is between 97 to 122 then character is lower case or if 65 to 90 then Upper case or if ASCII value is between 48 to 57 then it is Digit .
if above all condition is not true then it is a Special Symbol .

Solution :-

#include<iostream>
using namespace std;
int main()
{
char a;

cout<<"Press Any Key....\n"<<endl;
cin>>a;

if(a>=65 && a<90)
{
cout<<"Key Is Upper Key\n"<<endl;
}

else
{
  if(a>=97 && a<=122)
  {
  cout<<"Key Is Lower Key\n"<<endl;
}
  else
  {
  if(a>=48 && a<=57)
  {
  cout<<"Key Is Degit\n"<<endl;
}
  else
  {
  cout<<"Key Is Special Symbol\n"<<endl;
}
  }
}
return 0;

}

Output :-

C++ Program To Check Upper Case Lower Case Digit And Special Symbol

Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: