fork(2) download
  1. import java.math.*;
  2.  
  3. class Main {
  4. public static void main(String[] args) {
  5. BigDecimal valor = new BigDecimal("10.00");
  6. valor.setScale(2);
  7. System.out.println(valor);
  8. }
  9. }
  10.  
  11. //https://pt.stackoverflow.com/q/30701/101
Success #stdin #stdout 0.08s 47400KB
stdin
Standard input is empty
stdout
10.00