易百教程

编写程序:控制浮点数输出宽度

要求

3.1415926535数字值显示为3.14p的值显示为小数点左侧1位数字和右侧2位数字。
0.00008显示为0.0

参考实现代码:

#include <stdio.h>

int main()
{
    printf("%1.2f\n",3.1415926535);
    printf("%1.1f\n",0.00008);
    return(0);
}

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

hema@ubuntu:~/book$ gcc main.c
hema@ubuntu:~/book$ ./a.out
3.14
0.0