Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <bits/stdc++.h>
- using namespace std;
- signed main()
- {
- // sertde deyir
- // 1. hal: butun herfler boyuk olsa,
- // 2. hal: yada ilk herfden basqa hamsi boyuk olsa,
- //boyuk herfleri kicik ele,
- //kicik herfleri boyuk
- string s;
- cin >> s;
- int n = s.size();
- bool ok = true;
- for(int i = 1; i < n; i++){
- if((s[i] >= 'a') && (s[i] <= 'z')){
- ok = false; // ilk herf olmayan amma kicik olan herf varsa 2 hal da pozulur
- break;
- }
- }
- if(ok){
- //eger hallardan duzduse
- for(int i = 0; i < n; i++){
- if((s[i] >= 'a') && (s[i] <= 'z'))
- s[i] -= 32; // kiciyi boyuk ele
- else
- s[i] += 32; // boyuyu kicik ele
- }
- }
- cout << s << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement