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

reverse

时间:2014-07-30 00:44:42      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   strong   io   2014   

reverse

  [英][r?‘v?:s][美][r??v?s]

vt.& vi.(使)反转; (使)颠倒; 掉换,交换; [法]撤消,推翻; 

vi.      倒退; [桥牌]逆叫; 

adj.  反面的; 颠倒的; 倒开的; [生]倒卷的; 

n.      倒转,反向; [机]回动; 倒退; 失败; 

 

 

#include <iostream>

using namespace std;

#include<string>

#include<algorithm>

 

int main(int argc, char *argv[])

{  

      string s="asdfjkl";  

      reverse(   s.begin(),   s.end()  );  

             cout<<s<<endl;    

return 0;

}

 

bubuko.com,布布扣

 

 

 

 

 

 

#include <iostream>

using namespace std;

#include<string>

#include<algorithm>

int main(int argc, char *argv[])

{  

           string s="abcdefgh";

                       s=s+‘8‘+‘9‘;  

               reverse(  s.begin(),   s.end()  );  

        cout<<s<<endl;  

 return 0;

}

 bubuko.com,布布扣

 

 bubuko.com,布布扣

 

 

 

 

#include <iostream>

using namespace std;

#include<string>

#include<algorithm>

int main(int argc, char *argv[])

{  

        string s="abcdefgh";  

              s=s+‘8‘+‘9‘;

     reverse(  s.begin(),  s.end()  );

   cout<<  s                <<endl;    

cout<<     s.c_str()    <<endl;

   return 0;

}

 bubuko.com,布布扣

 

 

 

 

 

#include <iostream>

using namespace std;

#include<string>

#include<algorithm>

int main(int argc, char *argv[])

      string s;  

       cin>>s;  

           s=s+‘8‘+‘9‘;  

       reverse(   s.begin(),   s.end()  );  

               cout<<s<<endl;    

cout<<s.c_str()<<endl;

   return 0;

}

 

bubuko.com,布布扣

 

 

 

reverse,布布扣,bubuko.com

reverse

标签:style   blog   http   color   os   strong   io   2014   

原文地址:http://www.cnblogs.com/2014acm/p/3876688.html

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