Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,19 @@
|
|||
Procedure.i IsPrime(n)
|
||||
Protected k
|
||||
|
||||
If n = 2
|
||||
ProcedureReturn #True
|
||||
EndIf
|
||||
|
||||
If n <= 1 Or n % 2 = 0
|
||||
ProcedureReturn #False
|
||||
EndIf
|
||||
|
||||
For k = 3 To Int(Sqr(n)) Step 2
|
||||
If n % k = 0
|
||||
ProcedureReturn #False
|
||||
EndIf
|
||||
Next
|
||||
|
||||
ProcedureReturn #True
|
||||
EndProcedure
|
||||
Loading…
Add table
Add a link
Reference in a new issue