小写转大写
2024-10-25 22:29:49
发布于:江苏
7阅读
0回复
0点赞
不会
#include<bits/stdc++.h>
using namespace std;
string s;
int main(){
getline(cin,s);
for(int i=0;i<sizeof(s);i++){
if(s[i]>='a'&&s[i]<='z'){
s[i]-=32;
}
}cout<<s;
return 0;
}
这里空空如也
有帮助,赞一个