?
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <math.h>
#include <string.h>
#define MAXOP 100
#define NUMBER '0'
#define MAXVAL 100
#define BUFSIZE 100
int sp = 0;
double val[MAXVAL];
char buf[BUFSIZE];
int bufp = 0;
void push(double f){
if(sp < MAXVAL){
val[sp++] = f;
}
else{
printf("Error! Stack Full, can't push %g\n", f);
}
}
double pop(void){
if(sp > 0){
return val[--sp];
}
else{
printf("Error! Stack Empty!\n");
return 0.0;
}
}
int getch(void){
return (bufp > 0) ? buf[--bufp] : getchar();
}
int getop(char s[]){
int i;
static int c = ' ';
while((s[0] = c = getch()) == ' ' || c == '\t')
;
s[1] = '\0';
if(c == 's'){
int next1 = getch();
int next2 = getch();
if(next1 == 'i' && next2 == 'n'){
return c;
}
}
if(c == 'e'){
int next1 = getch();
int next2 = getch();
if(next1 == 'x' && next2 == 'p'){
return c;
}
}
if(c == 'p'){
int next1 = getch();
int next2 = getch();
if(next1 == 'o' && next2 == 'w'){
return c;
}
}
if(c == '-'){
int next = getch();
if(!isdigit(next) && next != '.'){
return c;
}
s[1] = c = next;
i = 1;
}
else{
i = 0;
if(!isdigit(c) && c != '.'){
return c;
}
}
if(isdigit(c)){
while(isdigit(s[++i] = c = getch()))
;
}
if(c == '.'){
while(isdigit(s[++i] = c = getch()))
;
}
s[i] = '\0';
return NUMBER;
}
int main(){
int type;
double op2;
char s[MAXOP];
while((type = getop(s)) != EOF){
switch(type){
case NUMBER:
push(atof(s));
break;
case '+':
push(pop() + pop());
break;
case '*':
push(pop() * pop());
break;
case '-':
op2 = pop();
push(pop() - op2);
break;
case '/':
op2 = pop();
if(op2 != 0.0){
push(pop() / op2);
}
else{
printf("Error! Zero Divisor!\n");
}
break;
case '%':
op2 = pop();
push((int)pop() % (int)op2);
break;
case 's':
op2 = pop();
push(sin(op2));
break;
case 'e':
op2 = pop();
push(exp(op2));
break;
case 'p':
op2 = pop();
push(pow(pop(), op2));
break;
case '\n':
printf("\t%.8g\n", pop());
break;
default:
printf("Error! Unknown Command %s\n", s);
break;
}
}
system("pause");
return 0;
}