题解AC2024-01-28 20:42:12发布于:广东5阅读0回复0点赞#include<bits/stdc++.h> using namespace std; char c; int main(){ cin>>c; if(c>='a' and c<='z'){ c-=32; } else if(c>='A' and c<='Z'){ c+=32; } cout<<c; return 0; } 有帮助,赞一个去预览0/2000发布这里空空如也
有帮助,赞一个