关于将字符串反序输出的问题
小弟正在学习STL请问大家:
以下程序何处有问题:
//text_reverse.cpp
//要实现将输入的一行字符反序输出(利用stack实现)
#include <iostream>
#include <stack>
using namespace std;
void main()
{ char item=' ';
stack<char>text;
cout<<"Type in a line of text with a <Enter>."<<endl
<<"The text will be printed in reverse order."<<endl;
do
{ cin>>item;
text.push(item);
}while(item=='\n');
cout<<endl<<endl;
while(!text.empty())
{ cout<<text.top();
text.pop();
}
cout<<endl;
}
此程序在VC++6.0 + WinXP环境下编译通过,但未实现目的(只输出了输入的第一个字符)
请问大家怎么修改以实现题目目的
谢谢大家了先!!!
问了些人说好象是"cin>>item"有问题,我也意识到了,但是应该怎么改呢,能说得具体点吗
(本人在线等……)