mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-07 17:56:02 +08:00
@ -11,6 +11,7 @@ public class PrimeFactorization {
|
||||
int n = scanner.nextInt();
|
||||
System.out.print(("printing factors of " + n + " : "));
|
||||
pfactors(n);
|
||||
scanner.close();
|
||||
}
|
||||
public static void pfactors(int n){
|
||||
|
||||
|
Reference in New Issue
Block a user