This is a Java Program to Implement Fermat Primality Test Algorithm. Fermat Primality Test is an algorithm which is used to determine if a given number is prime or not.
Here is the source code of the Java Program to Implement Fermat Primality Test Algorithm. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.
/**
** Java Program to Implement Fermat Primality Test Algorithm
**/
import java.util.Scanner;
import java.util.Random;
/** Class FermatPrimality **/
public class FermatPrimality
{
/** Function to check if prime or not **/
public boolean isPrime(long n, int iteration)
{
/** base case **/
if (n == 0 || n == 1)
return false;
/** base case - 2 is prime **/
if (n == 2)
return true;
/** an even number other than 2 is composite **/
if (n % 2 == 0)
return false;
Random rand = new Random();
for (int i = 0; i < iteration; i++)
{
long r = Math.abs(rand.nextLong());
long a = r % (n - 1) + 1;
if (modPow(a, n - 1, n) != 1)
return false;
}
return true;
}
/** Function to calculate (a ^ b) % c **/
public long modPow(long a, long b, long c)
{
long res = 1;
for (int i = 0; i < b; i++)
{
res *= a;
res %= c;
}
return res % c;
}
/** Main function **/
public static void main (String[] args)
{
Scanner scan = new Scanner(System.in);
System.out.println("Fermat Primality Algorithm Test\n");
/** Make an object of FermatPrimality class **/
FermatPrimality fp = new FermatPrimality();
/** Accept number **/
System.out.println("Enter number\n");
long num = scan.nextLong();
/** Accept number of iterations **/
System.out.println("\nEnter number of iterations");
int k = scan.nextInt();
/** check if prime **/
boolean prime = fp.isPrime(num, k);
if (prime)
System.out.println("\n"+ num +" is prime");
else
System.out.println("\n"+ num +" is composite");
}
}
Output:
Fermat Primality Algorithm Test Enter number 999983 Enter number of iterations 2 999983 is prime
Related posts:
Java Program to Check Whether Graph is DAG
Java Program to Implement vector
Generating Random Dates in Java
Chuyển đổi từ HashMap sang ArrayList
How to Round a Number to N Decimal Places in Java
Java Program to Describe the Representation of Graph using Adjacency List
Object Type Casting in Java
Một số từ khóa trong Java
Java Program to Implement LinkedBlockingDeque API
A Guide to ConcurrentMap
Java Program to Evaluate an Expression using Stacks
Java Program to Implement Warshall Algorithm
Java Program to Find SSSP (Single Source Shortest Path) in DAG (Directed Acyclic Graphs)
Java Program to Use Above Below Primitive to Test Whether Two Lines Intersect
Changing Annotation Parameters At Runtime
Java Program to Implement Stack
Using a Spring Cloud App Starter
Java Program to Check whether Undirected Graph is Connected using DFS
Logout in an OAuth Secured Application
Java Program to Implement Hash Tree
Java Program to Implement Max-Flow Min-Cut Theorem
Java Program to Implement JobStateReasons API
Java Program to Implement the Alexander Bogomolny’s UnOrdered Permutation Algorithm for Elements Fro...
Java Program to Implement Circular Singly Linked List
Jackson vs Gson
Dockerizing a Spring Boot Application
Java Program to Implement Cartesian Tree
Java 9 Stream API Improvements
Guide to Escaping Characters in Java RegExps
Java Program to Implement an Algorithm to Find the Global min Cut in a Graph
Spring WebClient vs. RestTemplate
Java Program to Implement Rolling Hash