码迷,mamicode.com
首页 > 编程语言 > 详细

codeup1967 数组逆置

时间:2017-09-03 16:43:03      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:code   log   iostream   cout   blog   空格   names   while   基本   

//基本都是多组数据测试,所以不要写一组数据的代码格式!!!
//全排列next_permutation()函数还真得用do{}while()循环格式来写;
#include<iostream> #include<algorithm> #include<string> using namespace std; int main() { string str; while (getline(cin, str))//cin读字符串遇到空格就截止,用getline是考虑到字符串可能有空格 { reverse(str.begin(), str.end());//翻转函数是左闭右开,可见end是结尾的下一个位置 cout << str << endl; } return 0; }

 

codeup1967 数组逆置

标签:code   log   iostream   cout   blog   空格   names   while   基本   

原文地址:http://www.cnblogs.com/dusanlang/p/7469843.html

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