Advertisement
alex326

Untitled

Jan 28th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. problema 2200
  2.  
  3. #include <iostream>
  4. using namespace std;
  5. int main()
  6. {char x;
  7. cin >> x;
  8. if (x>='a' && x<='z')
  9. cout << (char)(x-32);
  10. else
  11. cout << x;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement