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... 阅读全文
posted @ 2004-10-28 23:59 xyublog 阅读(1823) 评论(0) 推荐(0) 编辑