实型变量的分类
单精度(float)、双精度(double)、长双精度(long double)
实型数据的舍入误差
由于实型变量是由有限的存储单元组成的,因此能提供的有效数字总是有限的。
1 #include <stdio.h> 2 3 void main() 4 { 5 float a, b; 6 a = 123456.789e5;/*e代表的是10的5次方*/ 7 b = a + 20; 8 printf("%f\n", a); 9 printf("%f\n", b);12 }
通过运行上面代码我们得到的答案为12345678848.000000,这里是发生了舍入误差。
时间: 2024-12-16 03:41:43