我在做一个四则混合计算器,其他部分都已经做好了,但是在做循环时出现了问题,输入字符y继续运算时,清屏函数是在重新输入计算式回车后才识别,然后在字符串数组上,因为重新计算要将数组内已经含有的表达式清空,再重新赋值,但是表达式识别了,却不能再输出函数内体现出来,改了好多遍仍是有问题,只能到贴吧来求大神指教,所有问题都在主函数内,发全部的代码只是为了让大神们可以复制到vc中运行,跪谢大神帮助。代码如下:
#include<stdio.h>
#include<ctype.h>
#include<stdlib.h>
#include<conio.h>
#include<memory.h>
char token[100]; /*存放表达式字符串的数组*/
int n=0;
void error(void) /*报告错误函数*/
{
printf("ERROR!\n");
getch();
exit(1);
}
void match(char expected) /*检查字符匹配的函数*/
{
if(token[n]==expected)
token[++n]=getchar();
else error();
}
double term(void); /*计算乘除的函数*/
double factor(void); /*处理括号和数字的函数*/
double exp(void) /*计算加减的函数*/
{
double temp=term();
while((token[n]=='+')||(token[n]=='-'))
switch(token[n])
{
case'+':match('+');
temp+=term();
break;
case'-':match('-');
temp-=term();
break;
}
return temp;
}
double term(void)
{
double div;
double temp=factor();
while((token[n]=='*')||(token[n]=='/'))
switch(token[n])
{
case'*':match('*');
temp*=factor();
break;
case'/':match('/');
div=factor();
if(div==0) /*处理除数为零的情况*/
{
printf("The divisor is zero!\n");
exit(1);
}
temp/=div;
break;
}
return temp;
}
double factor(void)
{
double temp;
char number[100];
int i=0;
if(token[n]=='(')
{
match('(');
temp=exp();
match(')');
}
else if(isdigit(token[n])||token[n]=='.')
{
while(isdigit(token[n])||token[n]=='.') /*将字符串转换为浮点数*/
{
number[i++]=token[n++];
token[n]=getchar();
}
number[i]='\0';
temp=atof(number);
}
else error();
return temp;
}
main()
{
FILE *data=fopen("历史记录.dat","at");
if(data==NULL)
data=fopen("历史记录.dat","wt");
if(data==NULL)
return 0;
char e;
e='y';
while(e=='y'||e=='Y')
{
system("cls");
double result;
printf("请输入你所要计算的数学表达式,按回车得出结果:");
token[n]=getchar();
result=exp();
if(token[n]=='\n')
{
token[n]='\0';
printf("%s=%g\n",token,result);
fprintf(data,"%s=%g\n",token,result);
printf("continue?(y/Y)");
scanf("%c",&e);
memset(token,0,100);
//token[0]='\0';
system("cls");
}
else error();
}
fclose(data);
system("cls");
printf("PRESS ENTER TO EXIT!");
getchar();
return 0;
getch();
}
#include<stdio.h>
#include<ctype.h>
#include<stdlib.h>
#include<conio.h>
#include<memory.h>
char token[100]; /*存放表达式字符串的数组*/
int n=0;
void error(void) /*报告错误函数*/
{
printf("ERROR!\n");
getch();
exit(1);
}
void match(char expected) /*检查字符匹配的函数*/
{
if(token[n]==expected)
token[++n]=getchar();
else error();
}
double term(void); /*计算乘除的函数*/
double factor(void); /*处理括号和数字的函数*/
double exp(void) /*计算加减的函数*/
{
double temp=term();
while((token[n]=='+')||(token[n]=='-'))
switch(token[n])
{
case'+':match('+');
temp+=term();
break;
case'-':match('-');
temp-=term();
break;
}
return temp;
}
double term(void)
{
double div;
double temp=factor();
while((token[n]=='*')||(token[n]=='/'))
switch(token[n])
{
case'*':match('*');
temp*=factor();
break;
case'/':match('/');
div=factor();
if(div==0) /*处理除数为零的情况*/
{
printf("The divisor is zero!\n");
exit(1);
}
temp/=div;
break;
}
return temp;
}
double factor(void)
{
double temp;
char number[100];
int i=0;
if(token[n]=='(')
{
match('(');
temp=exp();
match(')');
}
else if(isdigit(token[n])||token[n]=='.')
{
while(isdigit(token[n])||token[n]=='.') /*将字符串转换为浮点数*/
{
number[i++]=token[n++];
token[n]=getchar();
}
number[i]='\0';
temp=atof(number);
}
else error();
return temp;
}
main()
{
FILE *data=fopen("历史记录.dat","at");
if(data==NULL)
data=fopen("历史记录.dat","wt");
if(data==NULL)
return 0;
char e;
e='y';
while(e=='y'||e=='Y')
{
system("cls");
double result;
printf("请输入你所要计算的数学表达式,按回车得出结果:");
token[n]=getchar();
result=exp();
if(token[n]=='\n')
{
token[n]='\0';
printf("%s=%g\n",token,result);
fprintf(data,"%s=%g\n",token,result);
printf("continue?(y/Y)");
scanf("%c",&e);
memset(token,0,100);
//token[0]='\0';
system("cls");
}
else error();
}
fclose(data);
system("cls");
printf("PRESS ENTER TO EXIT!");
getchar();
return 0;
getch();
}