1
2
53
168
315
241
未完持续4.1 csb@csb-ThinkPad-E430c:~/code/c$ cat float.c #include void main() { float a; double b; a=33333.333333333333333;//float,有效数字7位 b=33333.333333333333333;//double,有效位数16 printf(a=%f b=%f ,a,b); } ...