Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
44080 | YOYOLEE-李昕颖 | 字符串 | C++ | 通过 | 0 MS | 244 KB | 163 | 2024-03-27 20:47:06 |
#include<bits/stdc++.h> using namespace std; int main(){ string s; cin>>s; for(int i=s.size()-1;i>=0;i--){ cout<<s[i]; } return 0; }