|
|||
a little bit of tech, a little bit of green, to help tame the savage techmachine. |
2004年10月28日
摘要:
import java.math.BigDecimal;public float add(float v1,float v2){ BigDecimal b1 = new BigDecimal(Float.toString(v1)); BigDecimal b2 = new BigDecimal(Float.toString(v2)); return b1.add(b2).floatValue... 阅读全文
|
Copyright © 2024 xyublog
Powered by .NET 9.0 on Kubernetes |