Another update from ingydotnet^djgoku

This commit is contained in:
Ingy döt Net 2015-11-18 06:14:39 +00:00
parent 91df62d461
commit 948b86eafa
7604 changed files with 108452 additions and 22726 deletions

View file

@ -0,0 +1,28 @@
public class AlmostPrime
{
public static void main(String args[])
{
for (int k = 1; k <= 5; k++) {
System.out.print("k = " + k + ":");
for (int i = 2, c = 0; c < 10; i++)
if (kprime(i, k)) {
System.out.print(" " + i);
c++;
}
System.out.println("");
}
}
public static boolean kprime(int n, int k)
{
int f = 0;
for (int p = 2; f < k && p*p <= n; p++)
while (0 == n % p){
n /= p;
f++;
}
return f + ((n > 1)?1:0) == k;
}
}