117.求定积分
【摘要】
#include "stdio.h"#include "math.h" double fsimpf(x) /*要进行计算的被积函数*/double x;{ double y; y=log(1.0+x)/(1.0+x*x); return(y);} double fsimp(a,b,eps) /*辛普森算法*/double ...
-
#include "stdio.h"
-
#include "math.h"
-
-
-
double fsimpf(x) /*要进行计算的被积函数*/
-
double x;
-
{
-
double y;
-
y=log(1.0+x)/(1.0+x*x);
-
return(y);
-
}
-
-
double fsimp(a,b,eps) /*辛普森算法*/
-
double a,b,eps; /*a为积分下限,b为积分上限,eps是希望达到的精度*/
-
{
-
int n,k;
-
double h,t1,t2,s1,s2,ep,p,x;
-
n=1; h=b-a;
-
t1=h*(fsimpf(a)+fsimpf(b))/2.0; /*用梯形公式求出一个大概的估值*/
-
s1=t1;
-
ep=eps+1.0;
-
while (ep>=eps)
-
{
-
/*用梯形法则计算*/
-
p=0.0;
-
for (k=0;k<=n-1;k++)
-
{
-
x=a+(k+0.5)*h;
-
p=p+fsimpf(x);
-
}
-
t2=(t1+h*p)/2.0;
-
/*用辛普森公式求精*/
-
s2=(4.0*t2-t1)/3.0;
-
ep=fabs(s2-s1);
-
t1=t2; s1=s2; n=n+n; h=h/2.0;
-
}
-
return(s2);
-
}
-
main()
-
{
-
double a,b,eps,t;
-
a=0.0; b=1.0; eps=0.0000001;
-
clrscr();
-
puts("**********************************************************");
-
puts("* This program is to calculat the Value of *");
-
puts("* a definite integral by Simpson Method. *");
-
puts("**********************************************************");
-
t=fsimp(a,b,eps);
-
puts("\n----------------------------------------------------------");
-
printf(" >> The result of definite integral is : \n");
-
printf(" >> SIGMA(0,1)ln(1+x)/(1+x^2)dx = ");
-
printf("%e\n",t);
-
puts("----------------------------------------------------------");
-
printf("\n Press any key to quit...");
-
getch();
-
}
文章来源: blog.csdn.net,作者:程序员编程指南,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/weixin_41055260/article/details/124576484
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)