B

来源:互联网 发布:mindmanager for mac 编辑:程序博客网 时间:2024/04/29 23:57

B - Text Reverse

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 ‘\n’ after the interger T, then you may use gets() to read a line and process it.

代码块

代码块语法遵循标准markdown代码,例如:

#include<iostream>#include<algorithm>#include<string.h>#include<stdlib.h>using namespace std;int main(){    int n,i,j,k,len,p;    char a[1001];    cin>>n;    getchar();    while(n--)    {    gets(a);    len=strlen(a);    for(i=0;i<len;i++)    {         k=i;        while(a[i]!=' '&&a[i]!='\0')        {            i++;        }        j=i;         for(p=i-1;p>=k;p--)         {            printf("%c",a[p]);         }         if(a[j]==' ')          printf(" ");    }        printf("\n");   }return 0;}
原创粉丝点击