周泽洋 • 1个月前
#include<iostream> #include<cstdio> using namespace std; int main(){ char x; cin>>x; if(x>97==0)||(x<122==0)){ x=x+32; }else{ x=x-32; } cout<<x; }
评论: