易百教程

编写一个程序将所有立即值输出为浮点数

编写程序将所有立即值输出为浮点数

提示
使用的两个整数值相加,并将结果生成为float

#include <stdio.h>

int main()
{
    printf("The total is %.1f\\n", 16.0 + 17.0);
    system("pause");
    return(0);
}

执行上面示例代码,得到以下结果:

The total is 33.0