Java BigDecimal tanto(BigDecimal r, BigDecimal n)

Here you can find the source of tanto(BigDecimal r, BigDecimal n)

Description

tanto

License

Apache License

Declaration

public static BigDecimal tanto(BigDecimal r, BigDecimal n) 

Method Source Code


//package com.java2s;
//License from project: Apache License 

import java.math.BigDecimal;

public class Main {
    public static BigDecimal tanto(BigDecimal r, BigDecimal n) {
        return r.divide(n);
    }//from   w  w w . j  av  a 2 s .c o  m
}

Related

  1. stripTrailingZeros(BigDecimal value)
  2. stripTrailingZeros(final BigDecimal decimal)
  3. strToBigDecimal(final String arg)
  4. strValueBigDecimal(Number number)
  5. tangent(BigDecimal x)
  6. textToBigDecimal(String amountAsText)
  7. transferDonateAmount2Point(BigDecimal donateAmount)
  8. tryParseBigDecimal(Object val, BigDecimal defaultVal)
  9. tryToStoreAsIntegerBigDecimal(Object ob)