#include <iostream> #includ

#include <iostream>
#include <string>
using namespace std;
int main()
{
    string st;
    int i, len;
    getline(cin, st);
    len = st.size();
    for(i = 0; i < len; i++)
        if(st[i] >= 'a' && st[i] <= 'z')
            st[i] = st[i] - 'a' + 'A';
    cout << st << endl;
    return 0;
}

输入:

Hello, my name is Lostmonkey.

输出:____


答案
第1空:HELLO, MYNAMEISLOSTMONKEY.

题目信息

题号:6612
题型:填空题
难度:普通