My Cheat Sheets
Small things to revisit...
rounddown
/**
* flooring 0.5
*
@param
d
*
@param
places
*
@return
*/
public static final double
roundDown(
double
d,
int
places) {
return
Math.round((d * Math.pow(10,(
double
)places))-(d<0?-0.1d:0.1d))>
double
) places);
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment