Relative Content

Tag Archive for for-loop

Why aren’t all “isbomb” = true?

Private Sub create_bombs_onstart() Dim re As Integer = 0 Dim r As Integer Dim zas As integer = 100 For f = 1 To t Step 1 r = Int(Rnd() * 100) + 1 If r <= zas Then isbomb(f) = True re += 1 Else isbomb(f) = False End If Next why aren’t all […]