Java BigInteger Mod mod(BigInteger a, BigInteger b)

Here you can find the source of mod(BigInteger a, BigInteger b)

Description

Fonction modulo

License

Open Source License

Parameter

Parameter Description
a un entier
b un entier

Return

le modulo de a par b, un int

Declaration

static public BigInteger mod(BigInteger a, BigInteger b) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.math.BigInteger;

public class Main {
    /**/*from   w  w w  .j a v  a2  s  .c o m*/
     * Fonction modulo
     *
     * @param a un entier
     * @param b un entier
     * @return le modulo de a par b, un int
     */
    static public BigInteger mod(BigInteger a, BigInteger b) {
        return (a.subtract((a.divide(b)).multiply(b)));
    }
}

Related

  1. mod(BigInteger dividend, BigInteger divisor)
  2. mod(BigInteger v, BigInteger m)