Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
40901 YOYOLEE-李昕颖 字符串改成大写, 逆序输出 C++ 通过 1 MS 244 KB 183 2024-02-18 11:09:39

Tests(1/1):


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


测评信息: