Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
28607 | 超人JAX | 倒序数 | C++ | 通过 | 100 | 1 MS | 696 KB | 217 | 2022-07-04 14:36:57 |
#include <iostream> #include <algorithm> #include <string> using namespace std; int main(){ string str; cin>>str; int length=str.length(); for(int i=length-1;i>=0;i--){ cout<<str[i]; } return 0; }