csansoon

P1.06 P98960 Uppercase and lowercase letters

Sep 19th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main () {
  5.     char c;
  6.     cin >> c;
  7.     if (islower(c)) {
  8.         c=toupper(c);
  9.     }
  10.     else {
  11.         c=tolower(c);
  12.     }
  13.     cout << c << endl;
  14. }
Add Comment
Please, Sign In to add comment