Guest User

Untitled

a guest
Jun 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. import java.math.BigDecimal;
  2. import java.math.RoundingMode;
  3.  
  4. public class CurrencyFormat {
  5.  
  6. public static String getCustomCurrency(double currency) {
  7. BigDecimal cc = new BigDecimal(currency);
  8. return cc.setScale(2, RoundingMode.HALF_UP).toString();
  9. }
  10.  
  11. }
Add Comment
Please, Sign In to add comment