答案

孔声豪  •  6天前


#include<iostream> #include<cstdio>

 using namespace std;

 int main(){ 

char x; 

cin>>x; 

if(x<=90){

 x=x+32;

 }

else{ 

x=x-32; 

}

 cout<<x; 

return 0; 

}


评论: