Easy - 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
| Inputcopy | Outputcopy |
|---|---|
3 olleh !dlrow m'I morf .udh I ekil .mca |
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.
#include <iostream>
#include <stack>
using namespace std;
int main()
{
int n;
cin >>n;
char m=getchar();
while (n--)
{
stack<char> s;
while (1)
{
m=getchar();
if (m==' '||m=='\n'||m==EOF)
{
while (!s.empty())
{
cout <<s.top();
s.pop();
}
if (m=='\n'||m==EOF) break;
cout <<" ";
}
else s.push(m);
}
cout <<endl;
}
}
ReverseWordsinTextInput
这篇文章描述了一个编程问题,要求编写一个程序,接收输入的一行文本,然后将每个单词顺序反转并输出。程序使用C++和栈数据结构来实现这个功能。
760





