Advertisement
Guest User

Untitled

a guest
Apr 25th, 2018
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public static double round(double value, int places){
  2. if(places < 0) throw new IllegalArgumentException();
  3.  
  4. BigDecimal bd = new BigDecimal(value);
  5. bd = bd.setScale(place, RoundingMode.HALF_UP);
  6. return bd.doubleValue();
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement