1. 首页
  2. 数据库
  3. Redis
  4. 实用数学算法(C语言)之复合辛普森

实用数学算法(C语言)之复合辛普森

上传者: 2020-10-27 06:21:47上传 DOC文件 23.5KB 热度 10次
实现复合辛普森公式的简单C语言程序 #include #include #define f(x) (x)/(4+(x)*(x)) main() {int k,n; float a,b,h,s,x; scanf("%f,%f,%d",&a,&b,&n); h=(b-a)/(2*n); x=a; s=f(x)-f(b); k=1; do {x=x+h;s=s+4*f(x); x=x+h;s=s+2*f(x); k++; }while(k
用户评论