当91.83和80相减的时候,80这个数就隐式转换成float和double类型了。
写成这样就可以得到11.83了
进行强制类型转换float cha1 = 91.83f - 80f;
double cha1 = 91.83d - 80d;