| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 155990 | 李昱龙 | 单词翻转 | C++ | Wrong Answer | 1 MS | 272 KB | 178 | 2026-06-18 22:32:39 |
#include<bits/stdc++.h> using namespace std; int main(){ string w; getline(cin,w); int n=w.size(); for(int i=n;i>=0;i--){ cout<<w[i]; } return 0; }
------Input------
123 45
------Answer-----
321 54
------Your output-----