I'm writing a program for proving the 'Birthday Paradox'.
For i = 0 To (pnum - 1)
days(i) = rnd(h:=365)
Next
It generates a random number for every i
(days(i))
between 1 and 365, the function is:
Private Function rnd(h As Integer)
Dim num As Integer
Dim rnum As Random
rnum = New Random
num = rnum.Next(1, h)
Return num
End Function
When I add a breakpoint in the for loop and go through it manually, it works fine, but if I just run the program, it puts the same random number in every slot in days(I).
Any ideas why?
The number generation is working now, but the program is still working differently while debugging with breakpoints.
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim prc As Integer
For r As Integer = 1 To 100
Dim pnum As Integer = Val(TextBox1.Text) ''Number of people
Dim days(pnum - 1) As Integer
Dim rnd As Random = New Random()
For i As Integer = 0 To (pnum - 1)
days(i) = rnd.Next(365)
Next
Dim count As Integer = 0
Dim inc As Integer = 0
Do
For inc = (count + 1) To (pnum - 1)
If count = (pnum - 1) Then
Exit For
End If
If days(count) = days(inc) Then
prc += 1 ''Match found
Exit Do
End If
Next
If count = (pnum - 1) Then
Exit Do
End If
count += 1
Loop
Next
MsgBox(prc)
End Sub
End Class
That's the whole code. What it does is searching for two matching random numbers from the set. The whole thing repeats 100 times and it should count the results, but instead it only outputs 0 or 100.
The following code will help you to generate random numbers up to 365.using the for loop i displayed only five among them in message box you can extend them by increasing the limit of the for loop.