| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 139427 | Kevin | 单词翻转 | C++ | Presentation Error | 0 MS | 276 KB | 197 | 2025-12-06 17:08:45 |
#include<bits/stdc++.h> using namespace std; int main(){ string a,b; while(cin>>a){ int len=a.size(); for(int i=len-1;i>=0;i--){ cout<<a[i]; } cout<<" "; } return 0; }