要求
将3.1415926535
数字值显示为3.14
,p
的值显示为小数点左侧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