C++函数reverse即可#include <iostream>#include <algorithm>using namespace std;int main(){ string str; cin>>str; reverse(str.begin(), str.end()); cout<<str; return 0;}</algorithm></iostream>