FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
PureBasic-Randomizer/src/ArrayData.pbi at master · jdevfullstack-projects/PureBasic-Randomizer · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
jdevfullstack-projects
/
PureBasic-Randomizer
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
3
Code
Issues
0
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
PureBasic-Randomizer
/
src
/
ArrayData.pbi
Copy path
More file actions
More file actions
Latest commit
History
History
History
22 lines (17 loc) · 481 Bytes
Breadcrumbs
PureBasic-Randomizer
/
src
/
ArrayData.pbi
Copy path
File metadata and controls
22 lines (17 loc) · 481 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Dim classNumberBoys.s(25)
Dim classNumberGirls.s(25)
For x.b = 0 To 24
classNumberBoys(x) = "B" + Str(x + 1)
classNumberGirls(x) = "G" + Str(x + 1)
Next
;maximum is 25
desiredNumberBoys = 20 - 1
NewList stuList.s()
For x.b = 0 To desiredNumberBoys
AddElement(stuList()) : stuList() = classNumberBoys(x)
Next
;maximum is 25
desiredNumberGirls = 20 - 1
For x.b = 0 To desiredNumberGirls
AddElement(stuList()) : stuList() = classNumberGirls(x)
Next
Back
|
FazBrowse Home
|
New Git URL