java的数据类型:小数
类型①float 4字节单精度②double 8字节双精度
①float a=8.9f
float的字面值后面必须加f/F
②double b=1.3d
double的字面值后面可以加d/D或是不加