北航计算机机试10泰勒公式cos(x)

利用泰勒公式求cos(x)=1-x2/2!+x4/4!-……公式已给,重要的就是注意细节(比如阶乘的存储最好用double类型),二级C语言的难度。

学校给的答案,,题目也模糊,只要懂怎么写就行
看看 即可 以7的精度算的

#include <stdio.h>
#include <math.h>

#define PI 3.14159265358979323846
int main()
{
    int i=1;
    double x, x2, result=1, tmp1 = 1, tmp2 = 1, tmp3;

    printf("Input the times of PI:");
    scanf("%lf",&x); 
    x2 = PI*x*x*PI;

    do
    {
            tmp1 *= x2;
            tmp2 *= ((2*i-1)*2*i);
            tmp3 = (tmp1/tmp2);
            if(i%2==0)
                result += tmp3;
            else
                result -= tmp3;
            i++;
    }while(tmp3>0.0000001||tmp3<-0.0000001);

    printf("result=%lf\n", result);

    return 0;
}
全部评论

相关推荐

Natrium_:这时间我以为飞机票
点赞 评论 收藏
分享
accaacc:2到4k,不是2k到4k,所以年薪是30块
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务