浮点数溢出现象

浮点数,在计算机中,其存储的小数是有限制的,常用的float是最多7位小数,double则是16位小数,当要存储的数据的小数位数超过最大存储容量时,往往会出现溢出的现象

#include 
//浮点数溢出现象 
int main()
{
	float toobig=3.4e38*100.0f;
	float toosmall=(0.1234e-10)/10;
	printf("%e\n",toosmall);
	printf("%f",toobig);
	return 0;
} 

1.234000e-012
1.#INF00
--------------------------------
Process exited after 0.006343 seconds with return value 0
请按任意键继续. . .

通过结果可以看出,toosmall输出时,存在溢出现象

你可能感兴趣的:(学习历程,蓝桥杯,c++)