C++,学习使用STL,最短代码,而且很直观
数字颠倒
http://www.nowcoder.com/practice/ae809795fca34687a48b172186e3dafe
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main(){
string str;
getline(cin, str);
copy(str.rbegin(),str.rend(),ostreambuf_iterator<char>(cout));
}