高分求解一题c语言改错题,大神们现身吧。。。。对的追加50分说到做到,要交卷了帮帮忙吧~在线等

2025-01-02 05:21:40
推荐回答(2个)
回答1:

#include
#include
#include
long stoi(char *s,int *i) //stoi函数返回类型应该跟返回值的类型一样
{
long n=0;
while(isdigit(s[*i]))
n=n*10+s[(*i)++]-48;//这里的字符为'0'、'1'、、、要变成数字
return n;
}
long add(char *s)
{
int i=0,*pi=&i;//指针pi没有指向变量
char op;
long a=0,b=0,c;
a=stoi(s,pi);
op=s[(*pi)++];
b=stoi(s,pi);
switch(op) {
case '+':return a+b;
case '-':return a-b;
case '*':return a*b;
case '/':if(b==0){ printf("div!0");exit(0);}//这边两条语句加括号
return a/b;
default: printf("operator error!");exit(0);
}
}
int main(void)
{
char s[80];
gets(s);
printf("%s=",s);
printf("%ld\n",add(s));
return 0;
}
程序都改对了,错的地方都指出来了,分给我把。

回答2:

#include
#include
#include
int t=0;
int stoi(char *s,int i)
{
long n=0;
while(isdigit(s[i]))
{
n=n*10+(s[i++]-48);
t++;
}
return n;
}
long add(char *s)
{
int i=0,pi=0;
char op;
long a=0,b=0;
a=stoi(s,pi);
op=s[t++];
b=stoi(s,t);
switch(op) {
case '+':return a+b;
case '-':return a-b;
case '*':return a*b;
case '/':if(b==0)
{
printf("div!0");
exit(0);
}
return a/b;
default: printf("operator error!");exit(0);
}
}
int main(void)
{
char s[80];
gets(s);
printf("%s=",s);
printf("%ld\n",add(s));
return 0;
}
程序经过测试,,完美的结果。