C中小数位的计算问题

Calculation issue with decimal places in C

我正在尝试编写灰度代码,但计算有问题。谁能解释为什么这个 returns 27.00000 而不是 27.66667?

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

int main(void)
{

    float count = ((27 + 28 + 28) / 3);
    printf("%f\n", count);

}

您忘记了铸造:

int main()
{
    float count = ((27 + 28 + 28) / (float)3);
    printf("%f\n", count);

    return 0;
}

或者:

int main()
{
    float count = ((27 + 28 + 28) / 3.0);
    printf("%f\n", count);

    return 0;
}

https://www.tutorialspoint.com/cprogramming/c_type_casting.htm