2009-08-31

Java Floating Round Up

Java Math.Round() 只能處理結果為整數, 處理小數指定位數 round up 方法.

float f1 = (float) (Math.round( num1 *100.0f)/100.0f);

夠煩瑣吧!