矩形法求定积分的通用函数

#include<stdio.h>
#include<math.h>
int main()
{
    float integral(float(*)(float),float,float,int);//对integarl函数的声明
    float fsin(float);          //对fsin函数的声明
    float fcos(float);          //对fcos函数的声明
    float fexp(float);          //对fexp函数的声明
    float a1,b1,a2,b2,a3,b3,c,(*p)(float);
    int n=20;
    printf("input a1,b1:");
    scanf("%f,%f",&a1,&b1);
    printf("input a2,b2:");
    scanf("%f,%f",&a2,&b2);
    printf("input a3,b3:");
    scanf("%f,%f",&a3,&b3);
    p=fsin;
    c=integral(p,a1,b1,n);
    printf("The integral of sin(x) is:%f\n",c);
    p=fcos;
    c=integral(p,a2,b2,n);
    printf("The integral of cos(x) is:%f\n",c);
    p=fexp;
    c=integral(p,a3,b3,n);
    printf("The integral of exp(x) is:%f\n",c);
    return 0;
}

float integral(float(*p)(float),float a,float b,int n)
{
   int i;
   float x,h,s;
   h=(b-a)/n;
   x=a;
   s=0;
   for(i=1;i<=n;i++)
   {
      x=x+h;
      s=s+(*p)(x)*h;
   }
    return(s);
}
float fsin(float x)
{
    return sin(x);
}
float fcos(float x)
{
    return cos(x);
}
float fexp(float x)
{
    return exp(x);
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值