1 条题解

  • 0
    @ 2026-7-12 20:55:36

    #include<bits/stdc++.h> using namespace std; char c[105]; int main(){ cin.getline(c, 101); for(int i = 0; i < strlen(c); i++){ if(c[i] >= 'a' && c[i] <= 'z'){ c[i] = c[i] - 'a' + 'A'; } } cout << c; return 0; }

    • 1

    信息

    ID
    177
    时间
    1000ms
    内存
    256MiB
    难度
    3
    标签
    递交数
    105
    已通过
    53
    上传者