-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJava_Primality_Test.java
More file actions
37 lines (25 loc) · 999 Bytes
/
Java_Primality_Test.java
File metadata and controls
37 lines (25 loc) · 999 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*A prime number is a natural number greater than 1 whose only positive divisors are 1 and itself. For example, the first six prime numbers are 2, 3, 5, 7, 11, and 13.
Given a large integer, n, use the Java BigInteger class' isProbablePrime method to determine and print whether it's prime or not prime.
Input Format
A single line containing an integer, n (the number to be checked).
Constraints
n contains at most 100 digits.
Output Format
If n is a prime number, print prime; otherwise, print not prime.*/
//SOLUTION//
import java.io.*;
import java.util.*;
import java.math.*;
public class Solution {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
BigInteger n = in.nextBigInteger();
in.close();
if(n.isProbablePrime(1)){
System.out.println("prime");
}
else{
System.out.println("not prime");
}
}
}