| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 790 人关注过本帖
标题:[求助]请高手看看程序(积分问题)
只看楼主 加入收藏
白梦云
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2005-6-10
收藏
 问题点数:0 回复次数:0 
[求助]请高手看看程序(积分问题)

我写了下面这个小程序,为什么在区间[-1,1]上积分没有结果?把区间改为[0,1]就正确了,请哪位高手指点一二,不胜感激!!! #include "stdafx.h" #include "iostream.h" #include "math.h" #include "iomanip.h"

double fun1(double x); double fun2(double x); double fun3(double x); double fun4(double x); double fun5(double x); double integrat(double (*fun)(double),double a,double b); void main() { int i,j; double xsh[2][2]; xsh[0][0]=integrat(fun1,-1.0,1.0); xsh[0][1]=integrat(fun2,-1,1.0); xsh[1][0]=integrat(fun2,-1,1.0); xsh[1][1]=integrat(fun3,-1,1.0); cout<<xsh[0][0]<<endl; cout<<xsh[0][1]<<endl; cout<<xsh[1][0]<<endl; cout<<xsh[1][1]<<endl; } double fun1(double x) { return 1; } double fun2(double x) { return x; } double fun3(double x) { return (1.0/3)*pow(x,3); } double fun4(double x) { return 9.0/pow((x+2),2); } double fun5(double x) { return x*9.0/pow((x+2),2); } double integrat(double (*fun)(double),double a,double b) { double s,h,y; int n,i; s=((*fun)(a)+(*fun)(b))/2.0; cout<<"s : "<<s<<endl; n=1000; h=(b-a)/n; for (i=1;i<n;i++) { s+=(*fun)(a+i*h); } y=s*h; return y; }

搜索更多相关主题的帖子: 积分 
2005-06-10 09:16
快速回复:[求助]请高手看看程序(积分问题)
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.025587 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved