AC代码:
#include<bits/stdc++.h>
using namespace std;
int main(){
string a;
getline(cin , a);
for(int i=0; i<a.length(); i++){
int temp = a[i];
if( temp >= 65 && temp <= 91){
printf("%c", temp+32);
}
if( temp >= 97 && temp <= 123){
printf("%c", temp-32);
}
}
return 0;
}