大师的程序有点吃力,指点下咯:)
#include<ctype.h>
int getch(void);
void ungetch(int);
int getop(char s[])
{
int i,c;
while((s[0]=c=getch())==' '||c=='\t')
; 1.---输入非' '或 '\t'是while结束,s[1]='\0';程序就return '0',下面的那些if 不是多余?
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 ‘0’;
}