源程序:
#include <string>#include <iostream>#include <algorithm>using namespace std;int main(){ string str = ""; getline(cin, str, ' '); reverse(str.begin(), str.end()); cout << str << endl; system("pause"); return 1;}
运行结果: