constTest.cpp: In function 'void reverse()':
constTest.cpp:104:11: error: void value not ignored as it ought to be
void reverse()
{
stack<int>s;
int x;
while(cin>>x)
{
s.push(x);
}
while(!s.empty())
{
x = s.pop();
cout<<x;
}
}
C++ 中出现了“void value not ignored as it ought to be”错误,
原因是你使用的一个函数的返回值类型是void,而你有对它进行了赋值处理。
例如山面的函数