鱼C论坛

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

[已解决]新手虚心求教!

[复制链接]
发表于 2020-5-13 11:25:10 | 显示全部楼层 |阅读模式

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

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

x
pai/4=1-1/3+1/5-1/7+...(直到最后一项绝对值小于10-5为止)
#inelude<stdio.h>
#include<_______>
main()
{
double s=o,t=1;
int i=1,f=1;
while(fabs(t)>=1e-5)
{
s=______;
f=_______;
i=_______;
t=1.0*f/i;
}
s=______;
printf("圆周率为:%f\n",s);
}
最佳答案
2020-5-13 12:18:18
你这是在找人帮你做作业吗?
#include<stdio.h>
#include<math.h>
main()
{
    double s=0,t=1;
    int i=1,f=1;
    while(fabs(t)>=1e-5)
    {
        s=s+t;
        f=-1*f;
        i=i+2;
        t=1.0*f/i;
    }
    s=s*4;
    printf("圆周率为:%f\n",s);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-5-13 11:30:44 | 显示全部楼层
可以用long double
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-13 12:18:18 | 显示全部楼层    本楼为最佳答案   
你这是在找人帮你做作业吗?
#include<stdio.h>
#include<math.h>
main()
{
    double s=0,t=1;
    int i=1,f=1;
    while(fabs(t)>=1e-5)
    {
        s=s+t;
        f=-1*f;
        i=i+2;
        t=1.0*f/i;
    }
    s=s*4;
    printf("圆周率为:%f\n",s);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-5-13 16:21:40 | 显示全部楼层
#include<stdio.h>
#include<math.h>
void main()
{
    double s=0,t=1;
    int i=1,f=1;
    while(fabs(t)>=1e-5)
    {
        s=s+t;
        f=-1*f;
        i=i+2;
        t=1.0*f/i;
    }
    s=s*4;
    printf("圆周率为:%f\n",s);
}

求最佳

评分

参与人数 1鱼币 -1 收起 理由
sunrise085 -1 有抄袭的嫌疑哟~

查看全部评分

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

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-14 00:53

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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