Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 8, 2019 23:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/b54a945b1f12bd54d39b80d0dab682a8 to your computer and use it in GitHub Desktop.
Save parzibyte/b54a945b1f12bd54d39b80d0dab682a8 to your computer and use it in GitHub Desktop.
BigDecimal bd1 = new BigDecimal(50);
BigDecimal bd2 = new BigDecimal(50);
BigDecimal bd3 = bd1.add(bd1).add(bd2);
System.out.println(bd3.toString()); // 150
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment