标签:style blog io color ar os for sp strong
描述
现在给出了一个只包含大小写字母的字符串,不含空格和换行,要求把其中的大写换成小写,小写换成大写,然后输出互换后的字符串。
2 Acm ACCEPTED
aCM accepted
#include<iostream> #include <string> using namespace std; char inverse(char ch) { if(ch>=‘a‘) return ch-32; else return ch + 32; } int main() { int n; string str; cin>>n; while(n--) { cin>>str; int num = str.size(); for(int i = 0;i <num; i++) { cout<< inverse(str[i]); } cout<<endl; } return 0; }
标签:style blog io color ar os for sp strong
原文地址:http://www.cnblogs.com/imwtr/p/4069587.html