文章
25
粉丝
82
获赞
478
访问
33.3k
#include <iostream> #include <algorithm> //reverse是algorithm中的 using namespace std;
int main(){ string str; //string类详解 cin>>str; reverse(str.begin(),str.end()); //习惯左闭右开,实际操作范围是begin到end-1 cout<<str;
return 0; }
登录后发布评论
暂无评论,来抢沙发