Example usage for java.math BigInteger nextProbablePrime

List of usage examples for java.math BigInteger nextProbablePrime

Introduction

In this page you can find the example usage for java.math BigInteger nextProbablePrime.

Prototype

public BigInteger nextProbablePrime() 

Source Link

Document

Returns the first integer greater than this BigInteger that is probably prime.

Usage

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
}