Java Utililty Methods Long Number Mod
List of utility methods to do Long Number Mod
HOME
Java
L
Long Number Mod
Description
The list of methods to do Long Number Mod are organized into topic(s).
Method
long
modulo(long a, long n)
Get the arithmetic modulo.
while
(a < 0) a += n;
return
a % n;
«
1
2
»