| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 44076 | YOYOLEE-李昕颖 | 字符串 | C++ | Wrong Answer | 1 MS | 240 KB | 194 | 2024-03-27 20:36:14 |
#include<bits/stdc++.h> using namespace std; int main(){ char s[100]; int cnt=0; while(cin>>s[cnt++]); for(int i=0;i<cnt;i++){ cout<<s[cnt-1-i]; } return 0; }