zoukankan      html  css  js  c++  java
  • hdu 1062 Text Reverse

    Text Reverse

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 22877    Accepted Submission(s): 8805


    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
    3
    olleh !dlrow
    m'I morf .udh
    I ekil .mca
     
    Sample Output
    hello world!
    I'm from hdu.
    I like acm.
    Hint
    Remember to use getchar() to read ' ' after the interger T, then you may use gets() to read a line and process it.
     
    Author
    Ignatius.L
     
    #include<stdio.h>
    #include<string.h>
    #include<algorithm>
    #define MAX 1100
    using namespace std;
    int main()
    {
    	int n,m,j,i,t,k;
    	scanf("%d",&t);
    	char s[MAX];
    	char p[MAX];
    	getchar();
    	while(t--)
    	{
    		gets(s);
    		int len=strlen(s);
    		k=0;
    		for(i=0;i<len;i++)
    		{
    			if(s[i]!=' ')
    				p[k++]=s[i];
    			else 
    			{
    				for(j=k-1;j>=0;j--)
    			        printf("%c",p[j]);
    			        
    			    if(s[i+1]=='
    ')
    			    for(j=k-1;j>=0;j--)
    			        printf("%c",p[j]);
    			        
    			    if(s[i]==' ')
    				printf(" ");   
    			    k=0;
    			}
    		}
    		 for(j=k-1;j>=0;j--)
    			printf("%c",p[j]);
    		printf("
    ");
    	}
    	return 0;
    }
    

      

  • 相关阅读:
    LeetCode 10 Regular Expression Matching(字符串匹配)
    LeetCode 9 Palindrome Number(回文数字判断)
    操作系统期末复习资料分享
    计算机网络那些事~(二)
    seL4之hello-3征途
    计算机网络那些事~(一)
    seL4之hello-2旅途(完成更新)
    博客声明
    seL4环境配置
    Canvas链式操作
  • 原文地址:https://www.cnblogs.com/tonghao/p/4989668.html
Copyright © 2011-2022 走看看