易百教程

格式化浮点数宽度和小数点宽度

通过在%f之间放置2.1,就可以指示printf()函数将输出格式化为小数点左边的两位数字和右边的一位数字。如下:

printf("The value %2.1f is an float.
",98.6);

参考示例代码:

#include <stdio.h>

int main()//
{
    printf("The value %2.1f is an float.
",98.6); 
    return(0);
}

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

The value 98.6 is an float.