#include<stdio.h>
#include<math.h>
float Integral(float (*f)(float),float a,float b);
float F1(float x);
int main()
{
float a,b,m;
printf("输入两端区间:");
scanf("%f %f",&a,&b);
m=Integral(F1,a,b);//a,b为两端区间
printf("%.2f",2*m);//sin(x)有正有负,2倍
return 0;
}
float Integral(float (*f)(float),float a,float b)
{
float s,h;
int n=100,i;
s=((*f)(a)+(*f)(b))/2;
h=(b-a)/n;//区间等分
for(i=1;i<n;i++)
{
s=s+(*f)(a+i*h);
}
return s*h;
}
float F1(float x)
{
return sin(x);//要计算的函数
}
输入两端区间:0
3.14
4.00
--------------------------------
Process exited after 5.932 seconds with return value 0
请按任意键