Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
40896 liusiyu 字符串改成大写, 逆序输出 C++ 编译错误 0 MS 0 KB 168 2024-02-18 11:06:08

Tests(0/0):


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


测评信息: