Online Java Compiler By
JavaTpoint.com
import java.math.BigInteger; public class BigIntegerIsProbablePrimeExample3{ public static void main(String[] args){ // create a BigInteger object BigInteger big1; //create 3 boolean objects Boolean bool1,bool2,bool3; // assign value to big1 big1= new BigInteger("9"); // perform isProbablePrime on big1 // with certainty 1,0,-1 bool1= big1.isProbablePrime (1); bool2= big1.isProbablePrime (0); bool3= big1.isProbablePrime (-1); String str1 =big1 +" is prime with certainty 1 is "+ bool1; String str2 =big1 +" is prime with certainty 0 is "+ bool2; String str3 =big1 +" is prime with certainty -1 is "+ bool3; System.out.println(str1); System.out.println(str2); System.out.println(str3); } }
Output