gpt4 book ai didi

c - C语言中如何选择小数位数

转载 作者:行者123 更新时间:2023-11-30 15:35:56 24 4
gpt4 key购买 nike

我必须用 C 语言编写一个程序,该程序必须使用牛顿-拉夫森方法计算函数的零,该程序还应该询问用户小数位数。

这是代码摘要:

long double result=4.2367423847652347624523645237642
int decimal;
printf("How many decimal places do you want? \n);
scanf("%i",&decimal);
printf("The result is: %.**Lf"result);

我在中有问题,如果我写20,应该有20(%.20Lf)

最佳答案

用途:

printf("The result is: %.*Lf", decimal, result);

关于c - C语言中如何选择小数位数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22748319/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com