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:
Guide to Character Encoding
Lập trình đa luồng với CompletableFuture trong Java 8
Hashing a Password in Java
Call Methods at Runtime Using Java Reflection
Introduction to Spring Cloud Stream
Converting between an Array and a List in Java
Java Program to Implement Pollard Rho Algorithm
Hướng dẫn sử dụng lớp Console trong java
Servlet 3 Async Support with Spring MVC and Spring Security
Handle EML file with JavaMail
Java Program to Use Dynamic Programming to Solve Approximate String Matching
Spring Security Logout
Java Program to Find the Minimum value of Binary Search Tree
Java Program to Implement Hash Tables Chaining with Binary Trees
Generate Spring Boot REST Client with Swagger
Java Program to Implement the Vigenere Cypher
Spring Boot - Quick Start
Java Program to Find the GCD and LCM of two Numbers
Java Program to Implement Stack using Two Queues
Mệnh đề if-else trong java
Comparing getPath(), getAbsolutePath(), and getCanonicalPath() in Java
How to Implement Caching using Adonis.js 5
Java Program to implement Dynamic Array
Java Program to Implement Heap’s Algorithm for Permutation of N Numbers
Spring Webflux and CORS
Java List UnsupportedOperationException
Hướng dẫn sử dụng Printing Service trong Java
Java Program to Perform Stooge Sort
Guide to java.util.Formatter
Spring Boot - Application Properties
Xử lý ngoại lệ trong Java (Exception Handling)
Java program to Implement Tree Set