码迷,mamicode.com
首页 > 其他好文 > 详细

STL——翻转字符串

时间:2019-08-18 09:26:36      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:span   div   begin   字符   code   ring   pre   翻转   end   

#include<bits/stdc++.h>
using namespace std;

int main()
{
    string a = "abc";
    string a1 = a;
    reverse(a.begin(),a.end());
    cout<<a1<<endl<<a<<endl;
    return 0;
}

输出结果

abc cba

STL——翻转字符串

标签:span   div   begin   字符   code   ring   pre   翻转   end   

原文地址:https://www.cnblogs.com/2019go5/p/11371139.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!