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

带空格的字符串逆转(简洁版)

时间:2019-03-05 09:42:38      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:clu   getline   cout   ring   begin   ever   namespace   std   algo   

#include<iostream>
#include<algorithm>
#include<string>
using namespace std;
int main()
{
    string str;
    getline(cin,str);
    reverse(str.begin(),str.end());
    cout<<str;
    return 0;
}

带空格的字符串逆转(简洁版)

标签:clu   getline   cout   ring   begin   ever   namespace   std   algo   

原文地址:https://www.cnblogs.com/zhoumin6012/p/10474551.html

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