Problem:- C Program To Check Character Is Uppercase( Like A,B,C........Z) , Lowercase ( Like a,b,c.....z ) Alphabet Or A Digit ( Like 1,2,3,.......9 ) , Or A Special Symbol ( Like #,@,<,> ) .
To Solve this problem we will use ASCII Value if you have any problem with ASCII Value You Can Check C++ Program for Print ASCII Value Of Any Character. if character is between 65 to 90 then You Entered UPPER CASE if it is 97 to 122 Then You Entered LOWER CASE if it is between 48 to 57 then it is a DIGIT And Rest Are SPECIAL SYMBOLS.
See Also :- C Program To Check Character Is Uppercase, Lowercase Alphabet Or A Digit Or A Special Symbol
Solution :-
#include<iostream>
using namespace std;
int main()
{
char a;
cout<<"Press Any Key : ";
cin>>a;
if(a>=65 && a<90)
{
cout<<"An Upper Case Letter\n\n";
}
else
{
if(a>=97 && a<=122)
{
cout<<"A lower Case\n";
}
else
{
if(a>=48 && a<=57)
{
cout<<"A Digit\n";
}
else
{
cout<<"A Special Symbol\n";
}
}
}
}
See Also :- Java Program To Check Character Is Uppercase, Lowercase Alphabet Or A Digit Or A Special Symbol
Output:-
To Solve this problem we will use ASCII Value if you have any problem with ASCII Value You Can Check C++ Program for Print ASCII Value Of Any Character. if character is between 65 to 90 then You Entered UPPER CASE if it is 97 to 122 Then You Entered LOWER CASE if it is between 48 to 57 then it is a DIGIT And Rest Are SPECIAL SYMBOLS.
See Also :- C Program To Check Character Is Uppercase, Lowercase Alphabet Or A Digit Or A Special Symbol
Solution :-
#include<iostream>
using namespace std;
int main()
{
char a;
cout<<"Press Any Key : ";
cin>>a;
if(a>=65 && a<90)
{
cout<<"An Upper Case Letter\n\n";
}
else
{
if(a>=97 && a<=122)
{
cout<<"A lower Case\n";
}
else
{
if(a>=48 && a<=57)
{
cout<<"A Digit\n";
}
else
{
cout<<"A Special Symbol\n";
}
}
}
}
See Also :- Java Program To Check Character Is Uppercase, Lowercase Alphabet Or A Digit Or A Special Symbol
Output:-
0 Comments: