Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
27
Task/Filter/PureBasic/filter.basic
Normal file
27
Task/Filter/PureBasic/filter.basic
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
Dim Tal.i(9)
|
||||
Dim Evens.i(0)
|
||||
|
||||
;- Set up an array with random numbers
|
||||
For i=0 To ArraySize(Tal())
|
||||
Tal(i)=Random(100)
|
||||
Next
|
||||
|
||||
;- Pick out all Even and save them
|
||||
j=0
|
||||
For i=0 To ArraySize(Tal())
|
||||
If Tal(i)%2=0
|
||||
ReDim Evens(j) ; extend the Array as we find new Even's
|
||||
Evens(j)=tal(i)
|
||||
j+1
|
||||
EndIf
|
||||
Next
|
||||
|
||||
;- Display the result
|
||||
PrintN("List of Randoms")
|
||||
For i=0 To ArraySize(Tal())
|
||||
Print(Str(Tal(i))+" ")
|
||||
Next
|
||||
PrintN(#CRLF$+#CRLF$+"List of Even(s)")
|
||||
For i=0 To ArraySize(Evens())
|
||||
Print(Str(Evens(i))+" ")
|
||||
Next
|
||||
Loading…
Add table
Add a link
Reference in a new issue