- 柳泉中学提升班练习赛3月10日
小书童
- @ 2025-12-23 17:32:16
#include
#include
#include // for toupper
using namespace std;
int main() {
string s;
cin >> s;
for (char &c : s) {
if (c >= 'a' && c <= 'z') {
c = toupper(c);
}
}
cout << s << endl;
return 0;
}
0 comments
No comments so far...