fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6. import java.math.BigDecimal;
  7.  
  8. /* Name of the class has to be "Main" only if the class is public. */
  9. class Ideone
  10. {
  11. public static void main(String[] args) {
  12. Integer primeiroTermo = 5;
  13. Integer segundoTermo = 6;
  14. Integer terceiroTermo = 7;
  15. Integer quartoTermo = 8;
  16.  
  17. BigDecimal div = new BigDecimal(1d/2d);
  18. BigDecimal teste = (div.multiply(new BigDecimal(primeiroTermo.doubleValue()))
  19. .multiply(new BigDecimal(segundoTermo.doubleValue())).add((div)
  20. .multiply(new BigDecimal(terceiroTermo.doubleValue()))
  21. .multiply(new BigDecimal(quartoTermo.doubleValue()))));
  22.  
  23. System.out.println("Valor total de Bxt em BigDecimal: " + teste);
  24.  
  25. Double Bxt =
  26. (1d/2d) * primeiroTermo.doubleValue() * segundoTermo.doubleValue() +
  27. (1d/2d) * terceiroTermo.doubleValue() * quartoTermo.doubleValue();
  28.  
  29. System.out.println("Valor de BXT: em Double " + Bxt);
  30. }
  31. }
Success #stdin #stdout 0.12s 320576KB
stdin
Standard input is empty
stdout
Valor total de Bxt em BigDecimal: 43.0
Valor de BXT: em Double 43.0