golang浮点数算术计算导致的精度问题如何解决

star24 · · 1367 次点击
m1 := 8.2 m2 := 3.8 fmt.Println(fmt.Sprintf("%.1f", m1-m2))
#1