问题2716--Word Reversal

2716: Word Reversal

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

For each list of words, output a line with each word reversed without changing the order of the words. This problem contains multiple test cases! The first line of a multiple input is an integer N. Each input block is in the format indicated in the problem description.

输入

You will be given a number of test cases. The first line contains a positive integer indicating the number of cases to follow. Each case is given on a line containing a list of words separated by one space, and each word contains only uppercase and lowercase letters.

输出

For each test case, print the output on one line.

样例输入 Copy

3
I am happy today
To be or not to be
I want to win the practice contest

样例输出 Copy

I ma yppah yadot
oT eb ro ton ot eb
I tnaw ot niw eht ecitcarp tsetnoc

来源/分类