Q:

C++ Program To Convert A Lower Case To Upper Case Or Vice-Versa

0

Write A Program To Convert A Lower Case To Upper Case Or Vice-Versa

Logic :- 

Convert Lower to upper and upper to lower .we use ASCII value as we know that 'a' to 'z' ASCII is '97' to '122' And 'A' to 'Z' ASCII is '65' to '90' .
so if want to convert lower to upper then minus 32 to character 
and if you want to convert upper to lower then add 32 to character .

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 ch;
  cout<<"Enter any Alphabet :\n";
  cin>>ch;

 if(ch>='a'&&ch<='z')
 {
   cout<<"\nYou Entered A Lowercase Alphabet\n";
   ch=ch-32;
   cout<<"\nThe uppercase alphabet is "<<ch;
 }
 else
 {
   cout<<"\nYou Entered An Uppercase Alphabet\n";
   ch=ch+32;
   cout<<"\nTe Lowercase Alphabet Is "<<ch;
 }
 cout<<endl;
 return 0;

}

 

Output:

Enter any Alphabet :

A

You Entered An Uppercase Alphabet

 

Te Lowercase Alphabet Is a

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

total answers (1)

C++ Program To Find Max Number Among Given Three ... >>
<< C++ Program To Find Quotient And Reminder Of Two N...