4 条题解

  • -1
    @ 2024-7-21 14:39:25

    #include<bits/stdc++.h> using namespace std; string s; int main() { char a; getline(cin,s); int z=s.size(); for(int x=0;x<z;x++){ if(s[x]>='a' and s[x]<='z'){ s[x]=s[x]-32; } cout<<s[x]; }

    return 0;
    

    }

    信息

    ID
    1303
    时间
    1000ms
    内存
    128MiB
    难度
    5
    标签
    (无)
    递交数
    288
    已通过
    110
    上传者