vc6中怎么调用stl的堆栈?
请问在vc6.0中怎么调用stack?比如下面这个颠倒输入字符顺序输出的程序,为什么会在哪里conpiling一千几百年呢?是不是我的vc有问题?望路过的各位大侠赐教!感激不尽!
#include<iostream>
#include<stack>
using namespace std;
void main()
{
char input;
stack<char>rever_or;
do{
input=cin.get();
if(input!='\n')
rever_or.push(input);
}while(input!='\n');
do{
if(!rever_or.empty())
{
cout<<rever_or.top();
rever_or.pop();
}
}while(!rever_or.empty());
}
[此贴子已经被作者于2007-4-2 18:04:01编辑过]