Big Integer PDF

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

/Example of big integer import java.math.

BigInteger; public class BigIntegerExample1 { public static void main(String[] args) { BigInteger bigInteger3 = new BigInteger ("1234567890123456890"); BigInteger bigInteger4 = new BigInteger ("1999"); BigInteger bigIntResult4 = bigInteger3.modInverse(bigInteger4); System.out.println("Result is ==> " + bigIntResult4); } }

You might also like