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

HDU 1062 Text Reverse(水题,字符串处理)

时间:2014-07-27 10:12:02      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1062

解题报告:注意一行的末尾可能是空格,还有记得getchar()吃回车符。

bubuko.com,布布扣
 1 #include<cstdio>
 2 #include<string.h>
 3 #include<iostream>
 4 #include<algorithm>
 5 #include<cmath>
 6 #include<deque>
 7 #include<cstdlib>
 8 using namespace std;
 9 
10 const int maxn = 1000 + 5;
11 
12 char temp[maxn],str[maxn];
13 
14 int main()
15 {
16     int T;
17     scanf("%d",&T);
18     getchar();
19     while(T--)
20     {
21         gets(str);
22         int len = strlen(str),f = 0,flag = 1;
23         for(int i = 0;i < len;++i)
24         {
25             if(str[i] !=  )
26             temp[f++] = str[i];
27             if(str[i] ==   || i == len - 1)
28             {
29                 temp[f] = NULL;
30                 reverse(temp,temp+f);
31                 printf("%s",temp);
32                 if(i != len - 1 || str[i] ==  ) printf(" ");
33                 f = 0;
34             }
35         }
36         puts("");
37     }
38     return 0;
39 }
View Code

 

HDU 1062 Text Reverse(水题,字符串处理)

标签:

原文地址:http://www.cnblogs.com/xiaxiaosheng/p/3870550.html

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