List of usage examples for java.math BigInteger nextProbablePrime
public BigInteger nextProbablePrime()
From source file:Main.java
public static void main(String[] args) { BigInteger bi1 = new BigInteger("20"); // assign nextProbablePrime value of bi1 to bi2 BigInteger bi2 = bi1.nextProbablePrime(); System.out.println(bi2);//from w w w .j a v a 2 s .c om }