Q:

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

0

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 .

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#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:

Press Any Key....

2

Key Is Degit

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C++ Program To Find Quotient And Reminder Of Two N... >>
<< C++ Program To Check Number Is Positive Or Negativ...