题解 | #字符串反转#
字符串反转
http://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04
#include <iostream>
#include <string>
#include <algorithm>
//#include <math.h>
using namespace std;
int main(){
string res;
cin>>res;
reverse(res.begin(), res.end());
cout<<res<<endl;
return 0;
}
华为题库题解 文章被收录于专栏
牛客华为题库的题解