博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Text Reverse
阅读量:6340 次
发布时间:2019-06-22

本文共 1765 字,大约阅读时间需要 5 分钟。

Text Reverse

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 1027 Accepted Submission(s): 334
Problem Description
Ignatius likes to write words in reverse way. Given a single line of text which is written by Ignatius, you should reverse all the words and then output them.
 
Input
The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow.
Each test case contains a single line with several words. There will be at most 1000 characters in a line.
 
Output
For each test case, you should output the text which is processed.
 
Sample Input
3olleh !dlrowm'I morf .udhI ekil .mca
 
Sample Output
hello world!I'm from hdu.I like acm.
#include
#include
#include "stdio.h"using namespace std;int main(){
int n; cin >> n; getchar(); while(n--) {
char a[1001]; memset(a,0,sizeof(a)); gets(a); char *p ,*q,*k; k = q = p = a; while(*p!=0) {
int c = 0; while(*p == ' ') {
p++; cout << ' ' ; } k = p; //k标记字母开始的第一个位子 while(*p!=' ' && *p!=0) //把p移到最后字母的后一个 p++; q = p; //q标记最后一个字符的后一个位子 p--; //倒退一个,p就是标记最后一个字母了,输出全都字母 while(p>=k) {
cout << *p; p--; } p = q; } cout << endl; } return 0;

}

本文转自NewPanderKing51CTO博客,原文链接: http://www.cnblogs.com/newpanderking/archive/2011/07/23/2114934.html,如需转载请自行联系原作者

你可能感兴趣的文章
电子书下载:Programming Windows Identity Foundation
查看>>
有理想的程序员必须知道的15件事
查看>>
用于测试的字符串
查看>>
财付通和支付宝资料收集
查看>>
理解 IEnumerable 与 IEnumerator
查看>>
NHibernate 2.0 Beta 1 Released和一些工具
查看>>
【每天一个Linux命令】12. Linux中which命令的用法
查看>>
软件接口数据一致性机制
查看>>
微服务架构介绍和RPC框架对比
查看>>
Debian下使用OpenLDAP 管理端
查看>>
泛型排序器TComparer
查看>>
9个offer,12家公司,35场面试,从微软到谷歌,应届计算机毕业生的2012求职之路...
查看>>
创建符合标准的、有语意的HTML页面——ASP.NET 2.0 CSS Friendly Control Adapters 1.0发布...
查看>>
Adobe驳斥Flash过度耗电论 称HTML5更耗电
查看>>
No!No!No! It's not fashion!
查看>>
艰困之道中学到的经验教训
查看>>
互联网生态建设落地五大挑战——保险科技生态建设 ...
查看>>
进行短视频app开发工作时,可以加入它来保护青少年 ...
查看>>
25G DAC无源高速线缆和25G光模块之间的区别
查看>>
乐乐茶完成近2亿元Pre-A轮融资,祥峰投资领投
查看>>