1 条题解

  • 0
    @ 2024-10-22 20:15:21

    参考答案:

    #include<iostream>
    #include<string>
    using namespace std;
    
    int main()
    {
        string s;
        // 每次接收一个单词
        while (cin >> s)
        {
            // 如果首字符是小写
            if (s[0] >= 'a')
            {
                // 转大写
                s[0] = s[0] - 'a' + 'A';
            }
            // 输出
            cout << s[0];
        }
        return 0;
    }
    
    • 1

    信息

    ID
    5422
    时间
    1000ms
    内存
    256MiB
    难度
    2
    标签
    递交数
    10
    已通过
    4
    上传者