一个字,绝,哦,打错了,栈。
int main()
{
    string s;
    stack<string> temp;
    while(cin>>s)
        temp.push(s);
    while(!temp.empty())
    {
        cout<<temp.top()<<" ";
        temp.pop();
    }
    return 0;
}