题库 信息学奥赛题库 题目列表 #include <iostream> #include&nbsp...
填空题
#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.

输出:_________

题目信息
阅读程序 2014年 初赛
-
正确率
0
评论
180
点击