鱼C论坛

 找回密码
 立即注册
查看: 2575|回复: 3

[已解决]函数

[复制链接]
发表于 2021-11-3 16:36:11 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
编程求圆周率π的值
公式为:π=16*arctan(1/5)-4*arctan(1/239),其中arctan用如下的级数计算:arctan(x)=x-x*x*x/3+x*x*x*x*x/5-x*x*x*x*x*x*x/7+.......,直到级数的某项绝对值不大于10的负十二次方为止。
输入:无。输出:输出结果保留小数点后7位。
最佳答案
2021-11-3 20:37:27
#include <stdio.h>

double atanx(double x)
{
        double b , e , s                                          ;
        int i , j , k                                             ;
        for(s = 0 , e = i = k = 1 ; e > 1e-12 ; i += 2 , k = - k) {
                for(b = j = 1 ;  j <= i ; j ++) b *= x            ;
                e = b / i                                         ;
                s += k * e                                        ;
        }
        return s                                                  ;
}

double pix(void)
{
        return 16.0 * atanx(1.0 / 5.0) - 4.0 * atanx(1.0 / 239.0) ;
}

int main(void)
{
        printf("%.7lf\n" , pix())                                 ;
}
        编译、运行实况:
D:\00.Excise\C>g++ -o x x.c

D:\00.Excise\C>x
3.1415927

D:\00.Excise\C>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-11-3 20:37:27 | 显示全部楼层    本楼为最佳答案   
#include <stdio.h>

double atanx(double x)
{
        double b , e , s                                          ;
        int i , j , k                                             ;
        for(s = 0 , e = i = k = 1 ; e > 1e-12 ; i += 2 , k = - k) {
                for(b = j = 1 ;  j <= i ; j ++) b *= x            ;
                e = b / i                                         ;
                s += k * e                                        ;
        }
        return s                                                  ;
}

double pix(void)
{
        return 16.0 * atanx(1.0 / 5.0) - 4.0 * atanx(1.0 / 239.0) ;
}

int main(void)
{
        printf("%.7lf\n" , pix())                                 ;
}
        编译、运行实况:
D:\00.Excise\C>g++ -o x x.c

D:\00.Excise\C>x
3.1415927

D:\00.Excise\C>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-11-3 21:01:44 | 显示全部楼层
本帖最后由 Angelina_Jolie 于 2021-11-3 21:03 编辑

这题太难了

思路就这样
def arctan1(x):
    n = 3
    while 1:
        x1 = -x**n / n
        n += 4
def arctan2(x):
    n=5
    while 1:
        x2 = x**n / n
        n += 4
   
def arctan(x):
    arctan1(x)
    arctan2(x)
    if x+x1+x2 > 10**(-12) or  ((x+x1+x2) * (x+x1+x2) > 10**(-12)):
        print(x+x1+x2)

arctan(5)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-11-3 21:03:36 | 显示全部楼层
jackz007 发表于 2021-11-3 20:37
编译、运行实况:

强啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-4 15:14

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表