Skip to content

Commit

Permalink
Merge pull request TheAlgorithms#1300 from vtolas/master
Browse files Browse the repository at this point in the history
Add prime factorization algorithm in /maths
  • Loading branch information
StepfenShawn committed May 7, 2020
2 parents 0e9cab4 + 680d1cc commit d200beb
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions Maths/PrimeFactorization.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
package Maths;

import java.lang.Math;
import java.util.Scanner;

public class algorithm {
public static void main(String[] args){
System.out.println("## all prime factors ##");
Scanner scanner = new Scanner(System.in);
System.out.print("Enter a number: ");
int n = scanner.nextInt();
System.out.print(("printing factors of " + n + " : "));
pfactors(n);
}
public static void pfactors(int n){

while (n%2==0)
{
System.out.print(2 + " ");
n /= 2;
}

for (int i=3; i<= Math.sqrt(n); i+=2)
{
while (n%i == 0)
{
System.out.print(i + " ");
n /= i;
}
}

if(n > 2)
System.out.print(n);
}
}

0 comments on commit d200beb

Please sign in to comment.