1菜2023-07-15 18:44:03发布于:浙江4阅读0回复0点赞#include<bits/stdc++.h> using namespace std; int main(){ char x; cin>>x; if(x>='A'&&x<='Z'){ x=x+32; cout<<x; } else if(x>='a'&&x<='z'){ x=x-32; cout<<x; } } 有帮助,赞一个去预览0/2000发布这里空空如也
有帮助,赞一个