| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 75572 | sh25_shenpy | 字符串 | C++ | 解答错误 | 0 MS | 240 KB | 216 | 2025-12-07 20:33:03 |
#include <bits/stdc++.h> using namespace std; char s[101]; int main( ) { 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; }