C 프로그래밍 언어 학습 노트(二)
13463 단어 학습 노트
#include<stdio.h>
#include<stdlib.h>
#include<ctype.h>
#define MAXOP 100
#define NUMBER '0'
#define BUFSIZE 100
#define MAXVAL 100
int sp = 0;
double val[MAXVAL];
char buf[BUFSIZE];
int bufp = 0;
int getop(char s[]);
void push(double x);
double pop(void);
int getch(void);
void ungetch(int);
int main()
{
int type;
double op2,op1;
char s[MAXOP];
while((type = getop(s)) != EOF)
{
switch(type)
{
case NUMBER:
push(atof(s));
break;
case '+':
push(pop() + pop());
break;
case '-':
op2 = pop();
push(pop() - op2);
break;
case '*':
push(pop() * pop());
break;
case '/':
op2 = pop();
if(op2 != 0.0)
push(pop() / op2);
else
printf("error:zero divisor
");
break;
case '%':
op2 = pop();
push((int)pop() % (int)op2);
break;
case '
':
printf("\t%.8g
", pop());
break;
default:
printf("error:unknown command %s
", s);
break;
}
}
return 0;
}
void push(double f)
{
/*printf("f = %lf
", f);*/
if(sp < MAXVAL)
val[sp++] = f;
else
printf("error:the stack is full
");
}
double pop(void)
{
if(sp > 0)
return val[--sp];
else
{
printf("error:the stack is empty
");
return 0;
}
}
int getop(char s[])
{
int c, i;
while((s[0] = c = getch()) == ' ' || c == '\t')
;
s[1] = '\0';
if(!isdigit(c) && c != '.')
{
int c2;
/* , */
/* printf("c = %c
",c);*/
if( c == '
' || !(c == '-' || c == '+'))
{
return c;
}
/* , , */
c2 = getch();
ungetch(c2);
/*printf("c2 = %c
", c2);*/
if(!isdigit(c2))
{
return c;
}
}
i = 0;
if(isdigit(c) || c == '-')
{
while((s[++i] = c = getch()) && isdigit(c))
;
}
if(c == '.')
{
while((s[++i] = c = getch()) && isdigit(c))
;
}
s[i] = '\0';
/*printf("s = %s
", s);*/
if(c != EOF)
{
ungetch(c);
}
return NUMBER;
}
int getch()
{
return (bufp > 0) ? buf[--bufp] : getchar();
}
void ungetch(int c)
{
if(bufp < BUFSIZE)
{
buf[bufp++] = c;
}
else
{
printf("error:the buf is full
");
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
STL 학습노트(6) 함수 객체모방 함수는 모두pass-by-value이다 함수 대상은 값에 따라 전달되고 값에 따라 되돌아오기 때문에 함수 대상은 가능한 한 작아야 한다(대상 복사 비용이 크다) 함수 f와 대상 x, x 대상에서 f를 호출하면:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.