| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 83390 | sh25_shengmy | 字符串逆序 | C++ | 通过 | 0 MS | 248 KB | 183 | 2026-01-25 20:08:12 |
#include<bits/stdc++.h> using namespace std; int main(){ string s; getline(cin,s); int i=s.size(); for(int u=i-2;u>-1;--u) cout<<s[u]; return 0; }