float.c
来自「Newlib 嵌入式 C库 标准实现代码」· C语言 代码 · 共 21 行
C
21 行
#include <stdio.h>main(){ float a,b,c; a = 0.11; b = 3.12; c = a+b; printf ("Print float, result with 'f' = %f\n", c); printf ("Print float, result with 'e' = %e\n", c); printf ("Print float, result with 'E' = %E\n", c); printf ("Print float, result with 'g' = %g\n", c); printf ("Print float, result with 'G' = %G\n", c); pass ("float"); fflush (stdout);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?