Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
28
Task/Semiprime/AWK/semiprime.awk
Normal file
28
Task/Semiprime/AWK/semiprime.awk
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# syntax: GAWK -f SEMIPRIME.AWK
|
||||
BEGIN {
|
||||
main(0,100)
|
||||
main(1675,1680)
|
||||
exit(0)
|
||||
}
|
||||
function main(lo,hi, i) {
|
||||
printf("%d-%d:",lo,hi)
|
||||
for (i=lo; i<=hi; i++) {
|
||||
if (is_semiprime(i)) {
|
||||
printf(" %d",i)
|
||||
}
|
||||
}
|
||||
printf("\n")
|
||||
}
|
||||
function is_semiprime(n, i,nf) {
|
||||
nf = 0
|
||||
for (i=2; i<=n; i++) {
|
||||
while (n % i == 0) {
|
||||
if (nf == 2) {
|
||||
return(0)
|
||||
}
|
||||
nf++
|
||||
n /= i
|
||||
}
|
||||
}
|
||||
return(nf == 2)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue