Here you can find the source of mod(BigInteger a, BigInteger b)
Parameter | Description |
---|---|
a | un entier |
b | un entier |
static public BigInteger mod(BigInteger a, BigInteger b)
//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))); } }