
#define max_items 50
typedef int itemtype;
#include<iostream>
#include<string>
#include<math.h>
#include<fstream>
using namespace std;
class posteval
{
private:
string input;
itemtype result;
int top;
itemtype *items;
int cheak;
int counter;
public:
posteval();
void getexp();
void display();
bool isfull();
bool isempty();
void push(itemtype x);
itemtype pop();
void eval();
void cheakexp();
};
posteval::posteval()
{
...