fork download
  1. import java.math.*;
  2.  
  3. class Example
  4. {
  5. public static void main (String[] args) throws java.lang.Exception
  6. {
  7. BigDecimal a = new BigDecimal("2595.00");
  8. BigDecimal b = new BigDecimal("-1760.76");
  9. BigDecimal c = new BigDecimal("-834.00");
  10. BigDecimal d = new BigDecimal("-.24");
  11.  
  12. System.out.println(a.add(b).add(c).add(d));
  13. }
  14. }
Success #stdin #stdout 0.06s 33080KB
stdin
Standard input is empty
stdout
0.00