Run ID:144721
提交时间:2026-01-24 15:54:17
#include<iostream> using namespace std; int main(){ char x; cin>>x; if('A'<=x&&x<='Z'){ x=x+32; } else if('a'<=x&&x<='z'){ x=x-32; } cout<<x<<endl; return 0; }