GCC 除法截断(舍入问题)

发布于 2024-10-31 01:56:46 字数 1114 浏览 1 评论 0原文

在 Ubuntu Linux 10.04 上使用 GCC,除法后出现不需要的舍入。

我尝试过:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void FormatReading(int temp)
{
    double reading = temp / 100;
    printf("%f\n",reading);  /* displays 226.000000, was expecting 226.60 */
}

int main(void)
{
    FormatReading(22660);
    return 0;
}

有人建议我尝试:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void FormatReading(int temp)
{
    long reading = temp ;
    reading = reading / 100;
    printf("%3.2ld\n",reading);  /* displays 226 */
}

int main(void)
{
    FormatReading(22660);
    return 0;
}

我也尝试过:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void FormatReading(int temp)
{
    long reading = temp ;
    double reading2 = reading / 100;
    printf("%3.2f\n",reading2);  /* displays 226.00 */
}

int main(void)
{
    FormatReading(22660);
    return 0;
}

我还以各种方式尝试使用包含 math.h 和编译器标签 -lm 的舍入函数,但没有找到我正在寻找的东西。

非常感谢任何帮助。

此致, 伯特

Using GCC on the Ubuntu Linux 10.04, I have unwanted rounding after a division.

I tried:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void FormatReading(int temp)
{
    double reading = temp / 100;
    printf("%f\n",reading);  /* displays 226.000000, was expecting 226.60 */
}

int main(void)
{
    FormatReading(22660);
    return 0;
}

It was suggested to me to try:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void FormatReading(int temp)
{
    long reading = temp ;
    reading = reading / 100;
    printf("%3.2ld\n",reading);  /* displays 226 */
}

int main(void)
{
    FormatReading(22660);
    return 0;
}

I also tried:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void FormatReading(int temp)
{
    long reading = temp ;
    double reading2 = reading / 100;
    printf("%3.2f\n",reading2);  /* displays 226.00 */
}

int main(void)
{
    FormatReading(22660);
    return 0;
}

I also tried the round function using include math.h with compiler tag -lm in various ways, but did not find what I was looking for.

Any help greatly appreciated.

Best regards,
Bert

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深空失忆 2024-11-07 01:56:46
double reading = temp / 100.0;
                           ^^

temp / 100 是一个整数除法 - 将结果分配给 double 不会改变这一点。

double reading = temp / 100.0;
                           ^^

temp / 100 is an integer division - that you assign the result to a double doesn't change this.

玻璃人 2024-11-07 01:56:46

您使用的整数除法总是给出整数结果而不是分数,然后将结果分配给双精度数。除以 100.0 而不是 100 即可得到您想要的行为。

You are using integer division which always gives integral results rather than fractions, and then the result is being assigned to a double. Divide by 100.0 instead of 100 to get the behavior you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文