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

27:单词翻转

时间:2017-03-07 17:48:48      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:statistic   params   page   namespace   字符   out   color   names   之间   

27:单词翻转

总时间限制: 
1000ms
 
内存限制: 
65536kB
描述

输入一个句子(一行),将句子中的每一个单词翻转后输出。

输入
只有一行,为一个字符串,不超过500个字符。单词之间以空格隔开。
输出
翻转每一个单词后的字符串,单词之间的空格需与原文一致。
样例输入
hello world
样例输出
olleh dlrow
 1 #include<iostream>
 2 #include<cstring>
 3 #include<cstdio>
 4 #include<cmath>
 5 using namespace std;
 6 string a;
 7 int z=0;
 8 int main()
 9 {
10     getline(cin,a);
11     a=a+ ;
12     int l=a.length();
13     for(int i=0;i<=l+2;i++)
14     {
15         if(a[i]== )
16         {
17             for(int j=i-1;j>=z;j--)
18             {
19                 cout<<a[j];
20             }
21             cout<<" ";
22             z=i+1;
23         }
24     }
25     return 0;
26 } 

 

27:单词翻转

标签:statistic   params   page   namespace   字符   out   color   names   之间   

原文地址:http://www.cnblogs.com/zwfymqz/p/6515892.html

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