You are viewing a single comment's thread. Return to all comments →
public class Solution { public static void main(String[] args) throws IOException { BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in)); String n = bufferedReader.readLine(); bufferedReader.close(); BigInteger a = new BigInteger(n); System.out.println(a.isProbablePrime(1)?"prime":"not prime"); } }
Seems like cookies are disabled on this browser, please enable them to open this website
Java Primality Test
You are viewing a single comment's thread. Return to all comments →