清华大学机试 反向输出 Easy
Posted songlinxuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清华大学机试 反向输出 Easy相关的知识,希望对你有一定的参考价值。
基本思想:
无;
关键点:
无;
#include<iostream> #include<vector> #include<algorithm> #include<string> #include<cmath> #include<set> using namespace std; int main() { string s; while (cin >> s) { for (int i = s.size() - 1; i >= 0; i--) cout << s[i]; cout << endl; } return 0; }
以上是关于清华大学机试 反向输出 Easy的主要内容,如果未能解决你的问题,请参考以下文章