1 条题解

  • 1
    @ 2021-11-06 20:43:22
    #include <iostream>
    #include <cstring>
    #include <algorithm>
    
    using namespace std;
    
    int main()
    {
        char c; c = getchar();
        c = c - 'a' + 'A';
        putchar(c);
        return 0;
    }
    
  • 1

P1010 小写字母转大写字母(参考p54页实例2)

信息

难度
1
分类
(无)
标签
递交数
155
已通过
25
通过率
16%
被复制
1
上传者