| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 75572 | sh25_shenpy | 字符串 | C++ | Wrong Answer | 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; }