tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 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