//1.6 double数据的舍入误差 #include<stdio.h> int main() { float a; double b; a=33333.33333; b=33333.33333333333333; printf("%f\n%f\n",a,b); return 0; }