题解 | #简写单词#

简写单词

https://www.nowcoder.com/practice/0cfa856bf0d649b88f6260d878f35bb4

#include <cctype>
#include <cstdio>
#include <iostream>
using namespace std;

int main() {
    char a;
    string str;
    a = getchar();
    str = str + (char)toupper(a);
    while ((a = getchar()) != '\n')
    {
        if (a == ' ')
        {
            a = getchar();
            str = str + (char)toupper(a);
        }
    }
    cout << str;
}
// 64 位输出请用 printf("%lld")

直接使用toupper转化为大写

C++题解 文章被收录于专栏

记录在牛客网用C++刷题的题解思路

全部评论

相关推荐

点赞 评论 收藏
分享
10-30 23:23
已编辑
中山大学 Web前端
去B座二楼砸水泥地:这无论是个人素质还是专业素质都👇拉满了吧
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务