| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 75571 | sh25_shenpy | 字符串 | C++ | 解答错误 | 0 MS | 236 KB | 220 | 2025-12-07 20:31:43 |
#include <bits/stdc++.h> using namespace std; int main( ) { char s[101]; for(int i=0;i<strlen(s);++i){ cin>>s[i]; } for(int j=strlen(s)-1;j>=0;j--){ cout<<s[j];} return 0; }