字符串正反连接

题目描述:
所给字符串正序和反序连接,形成新串并输出

输入:
任意字符串(长度<=50)
123abc

输出:
字符串正序和反序连接所成的新字符串
123abccba321

继续巧妙的使用str类的倒序函数reverse

#include 
#include 
#include 
using namespace std;
int main()
{
    string str;
    while(getline(cin,str))
    {
        string str1=str;
        reverse(str.begin(), str.end());
        str1+=str;
        cout<return 0;
}

你可能感兴趣的:(字符串正反连接)