算法:大小写转换 问题解决 问题 小写转大写 解决 #include<bits/stdc++.h> using namespace std; int main(){ char a=0; cin>>a; cout<<char(a-32); }