使用printf()函数显示以下值。
127
3.1415926535
12345
0.00008
提示
使用适当的转换字符: %d
或%f
。
示例代码:
#include <stdio.h>
int main()
{
printf("%d
",127);
printf("%f
",3.1415926535);
printf("%d
",12345);
printf("%f
",0.00008);
return(0);
}
编译并执行上面示例代码,得到以下结果:
hema@ubuntu:~/book$ vi main.c
hema@ubuntu:~/book$ gcc main.c
hema@ubuntu:~/book$ ./a.out
127
3.141593
12345
0.000080