标题:帮帮忙啊 用C++计算泰勒公式sinx为什么偏差那么大
取消只看楼主
visualcp
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2010-6-16
结帖率:0
已结贴  问题点数:20 回复次数:0 
帮帮忙啊 用C++计算泰勒公式sinx为什么偏差那么大
  


void comput(int in)//计算n!
{
int innumber=1;
for( int i=1;i<(in+1);i++)
innumber=i*innumber;
return innumber;
}
main()
{
// TODO: Add your control notification handler code here
cin>>m_in;
m_out=0;
for(int i=1;1.0000000/comput(2*i-1)>0;i++)
{
m_out=m_out+pow(-1,(i-1))*1.000000*pow(m_in,(2*i-1))/comput(2*i-1);
}
cout<<m_out;
}   
搜索更多相关主题的帖子: 泰勒 sinx 偏差 公式 
2010-06-16 13:44



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-310383-1-1.html




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

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