同一个问题,第二次发帖求助!
题目是求两个函数的定积分,f1=x+1,f2=2x+2;要编出一个程序,我编了一个,但是问题重重,我编译了一下,有三个错误,我是新手,第一次学习c语言,这题要求用指针编写,我就试了试,但没成功,但这是我第一次编写这样的程序,所以我不会轻易放弃,因此第二次发帖求助来了!#include <stdio.h>
void main()
{float integral (float ,float);
float a,b,x,y1,y2;
scanf("%f,%f",&a,&b);
float f1,f2;
printf("please enter f1 and f2");
f1=x+1,f2=2*x+3;
y1=integral(a,b,f1);
y2=integral(a,b,f2);
printf("%f,%f",y1,y2);
}
float integral(float c,float d,float f1)
{float y3;
y3=integral(c,d,f1);
printf("%f",y3);
}
float integral(float c,float d,float f2)
{float y4;
y4=integral(c,d,f2);
printf("%f",y4);
}