#include <stdio.h>
#include <math.h>
#include <ctype.h>
#define NUMBER '0'
#define MAXLEN 1000
#define BUFSIZE 100
int getch(void);
void ungetch(int);
int getline(char *);
void push(double );
double pop(void );
void ungets(char *);
double atof(char s[]);
char buf[BUFSIZE];
int bufp = 0;
#define MAXVAL 100
int sp = 0;
double val[MAXVAL];
main(int argc,char *argv[])
{
char s[MAXLEN];
double op2;
while(--argc > 0)
{
ungets(" ");
ungets(*++argv);
switch(getline(s))
{
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 \n");
break;
default :
printf("erro : unkown command %s\n",s);
argc = 1;
break;
}
}
printf("\t%.8g\n",pop());
return 0;
}
int getop(char s[])
{
int i,c;
while((s[0] = c =getch()) == ' ' || c == '\t')
;
s[1] = '\0';
if( !isdigit(c) && c != '.')
return c;
i = 0;
if(isdigit(c))
while(isdigit(s[++i] = c = getch()))
;
if(c == '.')
while(isdigit(s[++i] = c =getch()))
;
s[i] = '\0';
if(c != EOF)
ungetch(c);
return NUMBER;
}
int getch(void)
{
return (bufp > 0) ? buf[--bufp] : getchar();
}
void ungeth(int c)
{
if(bufp >= BUFSIZE)
printf("ungetch : too many characters\n");
else
buf[bufp++] = c;
}
void push(double f)
{
if(sp < MAXVAL)
val[sp++] = f;
else
printf("error: stack full , can't push %g\n");
}
double pop()
{
if(sp > 0)
return val[--sp];
else
{
printf("error: stack empty\n");
return 0.0;
}
}
double atof(char s[])
{
double val,power;
int i,sign;
for(i = 0; isspace(s[i]);i++)
;
sign = (s[i] == '-') ? -1 : 1;
if(s[i] == '+' ||s[i] == '-')
i++;
for(val = 0.0;isdigit(s[i]);i++)
val = 10.0 * val + s[i] - '0';
if(s[i] == '.')
{
i++;
for(power = 1.0 ;isdigit(s[i]);i++)
{
val = 10.0 * val + s[i] - '0';
power *= 10.0 ;
}
}
return sign * val / power;
}
...C4028: formal parameter 1 different from declaration。请教...
有重复声明的函数,如double atof(char s[]),把这个改个名,这个告警不会有了
...warning C4028: formal parameter 1 different from declaration_百...
warning C4028: formal parameter 1 different from declaration 意思是: 形参1类型和声明中的类型不一致。看你函数的申明:void sum_rows(int ar[][COLS],int rows); ar类型是指向数组的指针 下面你函数的实现:void sum_rows(int *ar[4],int rows); ar类型是个指针数组 类型不一致,所以...
...warning C4028: formal parameter 1 different from declaration_百...
这个warning说的是你infout函数的声明和定义不一致,头文件里声明的函数参数是rinf *型,而源文件里却是const rinf *型。必须改成一致的。
...时warning C4028: formal parameter 1 different from declaration求...
放在int main()这行上面
安装OpenSsl时报错:fatal error U1077: 'cl' : return code '0x2...
需要安装MASM ,gQzkvZ
C语言编程为什么弹不出黑框来,只是显示这串英语???开发环境Visual C++...
程序没有编译通过,所以不会出调试窗口 错误信息如下:C:\\Documents and Settings\\ree\\桌面\\c.c(20) : warning C4013: 'calcualte' undefined; assuming extern returning int 这一句告诉你,calcualte没有定义(你把单词写错了--calculate)C:\\Documents and Settings\\ree\\桌面\\c.c(23) : error ...
如何改正以下C程序8个错误,急!!! warning C4098: 'findelem' : 'voi...
没有验证程序的正确性.只顺利通过编译.include<stdio.h>#include<stdlib.h>#define Maxsize 100typedef int datatype;typedef struct{ datatype a[Maxsize]; int len;} List;void initlist (List *p){ p->len=0;}void addlist (List *p , datatype x){ if(p->len==Maxsize...
函数中程序错误too few actual parameters哪儿出问题了
case0: sort0(c);break;case1: sort1(c);break;sort0,sort1这两个函数的参数都是两个啊,你调用的时候只给了一个,所以报错
C语言低级程序错误
void shuchu(struct zhigong zhigong1[],int n);void caidan();\/*菜单信息*\/ int main(){ int N;printf(" ***\\n");printf(" ");printf(" 欢迎使用\\n");printf(" ***\\n");system("pause");system("cls");printf("需要录入的职工人数:");scanf("%d",&N);luru(zhigong1...
帮忙查一下free库函数的用法错误!
把这个void free(char *array[],int size)函数的函数名换掉,改成其他的就行了