Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Randomize()
Label1.Text = Int(Rnd() * 45)
Label2.Text = Int(Rnd() * 45)
Label3.Text = Int(Rnd() * 45)
Label4.Text = Int(Rnd() * 45)
Label5.Text = Int(Rnd() * 45)
Label6.Text = Int(Rnd() * 45)
If (Label1.Text = 0) + 1 Or (Label2.Text = 0) + 1 Or (Label3.Text = 0) + 1 Or (Label4.Text = 0) + 1 Or (Label5.Text = 0) + 1 Or (Label6.Text = 0) + 1 Then
End If
End Sub
End Class
로또 번호를 생성하려고 하는데 잘 안되네요 ㅜㅜ 왜 자꾸 0이 나오는지 이해가 안되는데 도와주실분 있나여