tj
2024-10-19 09:16:47
发布于:上海
0阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
for(int i=1;i<=n;i++){
int m;
string t;
cin>>t;
m=t.length();
for(int i=0;i<m;i++){
if(t[i]>='A'&&t[i]<='Z'||t[i]>='a'&&t[i]<='z'){
if(t[i]>'Z'&&i==0) t[i]-=32;
if(t[i]<'a'&&i!=0) t[i]+=32;
}
}
cout<<t<<endl;
}
return 0;
}
这里空空如也
有帮助,赞一个