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.
中文大意
伊格内修斯喜欢以相反的方式写字。给定由 Ignatius 编写的一行文本,您应该反转所有单词,然后输出它们。

本文解析了如何使用栈来解决伊格内修斯的文本反转问题,通过实例演示了如何利用getchar()和gets()函数实现单词级别的字符串反转。解题思路涉及字符串处理和基本数据结构的运用。
最低0.47元/天 解锁文章
771

被折叠的 条评论
为什么被折叠?



