其他分享
首页 > 其他分享> > P5733 【深基6.例1】自动修正

P5733 【深基6.例1】自动修正

作者:互联网

题目传送门

#include <bits/stdc++.h>

using namespace std;

int main() {
    string s;
    cin >> s;
    //方法1:STL大法
    //transform(s.begin(), s.end(), s.begin(), ::toupper);
    //printf("%s\n", s.c_str());

    //方法2:该个char进行转换输出
    for (int i = 0; i < s.size(); i++)
        printf("%c", toupper(s[i]));
    return 0;
}

标签:begin,深基,P5733,int,修正,传送门,toupper,printf,size
来源: https://www.cnblogs.com/littlehb/p/15570753.html