我想接受用户的输入(数学表达式)并将其推入堆栈。然后我想通过一些规则来运行它,询问它是一个'(',一个数字还是一个运算符'+'。我的问题是到目前为止我不知道如何判断,特别是在while循环中首先说明if声明,如果一个字符“实际上”是一个数字。有什么建议吗?
#include <stack>
int main()
{
std::stack<char> myStack; // initializing the stack
char line[40];
cin.getline(line, 40); // this and the proceeding line get the input
for (int i = 0; i < 40; i++)
myStack.push(line[i]); //pushing all of the char onto the stack.
while (!myStack.empty()) {
if (myStack item = a number) {
// ^ this is where it doesn't compile.
// I need to figure out how to find out if a char is a number
cout << item << endl;
}
else if (myStack.empty()) {
myStack.push(item);
}
}
}