码迷,mamicode.com
首页 > 其他好文 > 详细

15.求函数:sin(x)=x/1! - x3/3! + x5/5! -x7/7! +…,最后一项精度不低于0.000001

时间:2014-08-05 22:25:40      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:os   io   div   ios   return   函数   include   sp   

#include <iostream>
using namespace std;
 

int main() 

    double x,sinx=0.0,jbf,j=1.0; 
    cin>>x; 
    jbf=x; 
    int k=1,l=1; 
    double n=1; 
    while(j>=1e-6) 
    { 
        j=jbf/n; 
        sinx=sinx+k*j; 
        jbf=jbf*x*x; 
        k=-k; 
        n=n*(l+1)*(l+2); 
        l+=2; 
    } 

    cout<<"sin(x) = "<<sinx<<endl; 
    return 0;
}

15.求函数:sin(x)=x/1! - x3/3! + x5/5! -x7/7! +…,最后一项精度不低于0.000001,布布扣,bubuko.com

15.求函数:sin(x)=x/1! - x3/3! + x5/5! -x7/7! +…,最后一项精度不低于0.000001

标签:os   io   div   ios   return   函数   include   sp   

原文地址:http://www.cnblogs.com/jixiaowu/p/3893224.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!