Skip to content

Instantly share code, notes, and snippets.

@milep
Created January 1, 2012 20:57
Show Gist options
  • Save milep/1548328 to your computer and use it in GitHub Desktop.
Save milep/1548328 to your computer and use it in GitHub Desktop.
Example about Java's BigDecimals
//Example about Java's BigDecimals
BigDecimal vat = new BigDecimal("23");
BigDecimal price = new BigDecimal("200");
BigDecimal h = new BigDecimal("100");
price.multiply(vat.divide(h)).add(price);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment