要求
编写一个程序:将3.1415
数值舍入到3.142
。
提示
printf
格式可以在输出浮点数时进行舍入。
参考实现代码:
#include <stdio.h>
int main()
{
printf("%1.3f
",3.1415926535);
return(0);
}
编译并执行上面代码,得到以下结果:
hema@ubuntu:~/book$ gcc main.c
hema@ubuntu:~/book$ ./a.out
3.142
要求
编写一个程序:将3.1415
数值舍入到3.142
。
提示
printf
格式可以在输出浮点数时进行舍入。
参考实现代码:
#include <stdio.h>
int main()
{
printf("%1.3f
",3.1415926535);
return(0);
}
编译并执行上面代码,得到以下结果:
hema@ubuntu:~/book$ gcc main.c
hema@ubuntu:~/book$ ./a.out
3.142