Run ID:5421

提交时间:2024-11-16 09:51:55

#include<iostream> using namespace std; int main(){ char c; cin>>c; if(c>='A'&&c<='Z'){ c=c+32; } else{ c=c-32; } cout<<c<<endl; return 0; }