#include <bits/stdc++.h> using namespace std; int main(){ char ch; cin>>ch; if(ch>='A'&&ch<='Z') { ch=ch+32; cout<<ch<<endl; } else{ cout<<ch<<endl; } return 0; }
在哪里有问题?