题解 | #字符逆序#
字符逆序
http://www.nowcoder.com/practice/cc57022cb4194697ac30bcb566aeb47b
#include<iostream>
using namespace std;
int main()
{
string str;
while(getline(cin,str))
{
int len=str.length()-1;
int i=0;
string res;
while(len>=0)
{
res.push_back(str[len--]);
}
cout<<res<<endl;
}
return 0;
}