gpt4 book ai didi

c - 如果你在 C 中没有 %f,如何编写一个 C 程序来打印没有 %f 的小数点后 2 位小数?

转载 作者:太空宇宙 更新时间:2023-11-04 05:26:29 25 4
gpt4 key购买 nike

请帮我写一个 C 程序来解决我的问题。

问题 - 你在 C 中没有 %f。如何编写一个 C 程序来打印最多 2 位小数而不使用 %f

最佳答案

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

int main(void)
{
double num = 3.1416, a, b;

b = modf(num, &a) * 10000;
printf("%d.%d\n", (int)a, (int)b);
return 0;
}

正如@mch 所指出的,它不适用于 3.04 这样的数字,这是一个有效的解决方案 ( provided by Martin ):

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

void dbl2str(char *s, double number, int decimals)
{
double integral, fractional, epsilon = 1e-9;
double round = 0.5 * pow(10, -decimals);
int n, i;

fractional = modf(number + round + epsilon, &integral);
n = sprintf(s, "%d%c", (int)integral, decimals ? '.' : 0);
for (i = 0; i < decimals; i++) {
fractional *= 10;
s[n + i] = '0' + (int)fractional;
fractional = modf(fractional, &integral);
}
s[n + i] = '\0';
}

int main(void)
{
char s[32];

dbl2str(s, 3.1416, 4);
printf("%s\n", s);
dbl2str(s, 3.159, 4);
printf("%s\n", s);
dbl2str(s, 3.05, 3);
printf("%s\n", s);
return 0;
}

输出:

3.1416
3.1590
3.050

关于c - 如果你在 C 中没有 %f,如何编写一个 C 程序来打印没有 %f 的小数点后 2 位小数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25257320/

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