Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
17677 鲁家菱 字符串改成大写, 逆序输出 C++ 通过 0 MS 252 KB 204 2023-05-16 11:19:35

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main() { string s; cin>>s; for(int i=s.length()-1;i>=0;i--){ if(s[i]>='a'&&s[i]<='z'){ s[i]-=32; } cout<<s[i]; } return 0; }


测评信息: