Method divide(BigDecimal divisor, int scale, int roundingMode)
Return type: java.math.BigDecimal
Member of: java.math.BigDecimal
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 .divide(list, 2, BigDecimal.ROUND_HALF_UP);
2 BigDecimal ttt = tt.divide(uno, 2, BigDecimal.ROUND_UP);
3 myConstant = myConstant.divide(aNmbr, this.getScale(), this.getRoundingMode());
4 myBody[i] = myBody[i].divide(val, aScale, aRoundingMode);
5 rate2 = one.divide(rate1, 12, BigDecimal.ROUND_HALF_UP);
6 bp[col][j] = bp[col][j].divide(lu[col][col], scale, roundingMode);
7 : abd.divide(bbd, scale,
8 lu[row][col] = lu[row][col].divide(lu[col][col], scale, roundingMode);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.