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

【HDOJ】1062 Text Reverse

时间:2017-07-02 13:48:15      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:int end   name   include   ring   line   eve   cout   lin   string   

#include<iostream>
#include<string>
using namespace std;
void main()
{
int T;
while (cin>>T)
{
getchar();

for (int i = 0; i < T; i++)
{
string str;
getline(cin, str);
int end = 0,top = 0;
while (str[end] != ‘\0‘)
{
if (str[end]==‘ ‘)
{
for (int i = end-1; i >=top; i--)
{
cout << str[i];
}
top = end + 1;
}
end++;
}
if (str[end]==‘\0‘)
{
for (int i = end; i >=top-1; i--)
{
cout << str[i];
}
}
cout << endl;
}
}
}

【HDOJ】1062 Text Reverse

标签:int end   name   include   ring   line   eve   cout   lin   string   

原文地址:http://www.cnblogs.com/ruoh3kou/p/7105794.html

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