作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我试图在c(IDE = DEV C++)中获取pi的值,所以我在其中使用long double,它给我的结果是一组完整的零这是程序
int main()
{
long double rootOf3;
rootOf3 = (22.0/7.0);
printf("%lf", rootOf3);
system("pause");
return 0;
}
之后我发现 pi 的值在 c 中并不精确,并且已经在 math.h 中声明,当我尝试使用此代码获取该值时
int main()
{
printf("%f", M_PI);
printf("%e", M_PI);
printf("%lf", M_PI);
system("pause");
return 0;
}
我得到了这些值
3.1415933.141593e+0003.141593Press any key to continue . . .
所以我的问题
1)第一个程序中的错误是什么?我可以使用上面的代码使用 long double 获取 pi 的值
2)在c中,pi的值是否不准确?为什么我没有得到math.h中分配的整个pi值
谢谢
最佳答案
要打印long double
,请使用"%Lf"
。对 long double
使用 "%lf"
会导致未定义的行为。
#include <stdio.h>
int main()
{
long double pi = 22.0/7.0;
printf("%Lf\n", pi);
printf("%lf\n", pi);
return 0;
}
输出:
3.142857
0.000000
更新,回应OP的评论
使用中的默认设置,很难看出使用
。通过使用在小数点后打印更多数字的格式,差异会更明显。float
、double
和long double
表示数字的准确度> printf
程序:
#include <stdio.h>
void test1()
{
float pi = 22.0f/7.0;
printf("=== float ================\n");
printf("%.25lf\n", pi);
printf("%lf\n", pi);
}
void test2()
{
double pi = 22.0/7.0;
printf("=== double ===============\n");
printf("%.25lf\n", pi);
printf("%lf\n", pi);
}
void test3()
{
long double pi = 22.0L/7.0;
printf("=== long double ==========\n");
printf("%.25Lf\n", pi);
printf("%Lf\n", pi);
}
int main(void)
{
test1();
test2();
test3();
return 0;
}
输出:
=== float ================
3.1428570747375488281250000
3.142857
=== double ===============
3.1428571428571427937015414
3.142857
=== long double ==========
3.1428571428571428572357888
3.142857
关于c - C语言中的圆周率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32794125/
python计算的位数 在电脑上做了一个实验,看看python能计算到多少位,一下是结果。 ?
我是一名优秀的程序员,十分优秀!