Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
17
Task/Semiprime/FreeBASIC/semiprime.basic
Normal file
17
Task/Semiprime/FreeBASIC/semiprime.basic
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
function semiprime( n as uinteger ) as boolean
|
||||
dim as uinteger a = 2, c = 0
|
||||
while c < 3 andalso n > 1
|
||||
if n mod a = 0 then
|
||||
n /= a
|
||||
c += 1
|
||||
else
|
||||
a += 1
|
||||
end if
|
||||
wend
|
||||
if c = 2 then return true
|
||||
return false
|
||||
end function
|
||||
|
||||
for i as uinteger = 0 to 64
|
||||
print i, semiprime(i)
|
||||
next i
|
||||
Loading…
Add table
Add a link
Reference in a new issue