标识找到一个数 ’0‘是什么含义
本帖最后由 我蒸叫佐赫 于 2020-2-5 09:08 编辑#include <stdio.h>
#include <stdlib.h>
#define MAXOP 100
#define NUMBER '0'/* 标识找到一个数 */
main
{
int type;
double op2;
char s[];
while((type = getop(s)) != EOF){
switch(type){
case NUMBER:
push(atof(s));
break;
case '+':
push(pop() + pop());
break;
case '\n':
printf("\t%.8g\n",pop());
break;
default:
printf("error: unknow command %s\n",s);
break;
}
}
return 0;
} 漏掉了另外一个文件中的内容{:5_108:} {:10_266:}
页:
[1]