vb生成10个随机数,且在1~50之间

2020-09-20 教育 406阅读

'作者:星空无月(xkwy)
Private Sub Command1_Click()
    Dim i As Integer, k As Integer
    Dim strText As String
    Dim a(9) As Integer
    For i = 0 To 9
        Do While Repeat(a(), k, i)      '如果重复的话继续获取
            k = Int(Rnd * 50 + 1) '获取1~50的整数
        Loop
        a(i) = k
        
    Next
    For i = 0 To 9
        strText = strText & " " & a(i)
    Next
    Label1.AutoSize = True
    Label1.Caption = strText
End Sub
Private Function Repeat(a() As Integer, Num As Integer, Index As Integer) As Boolean
       '参数:a()表示要判断的数组,Num表示被重复的数字,index表示判断到几号就不看了
    Dim j As Integer
    For j = LBound(a) To Index        '如果有重复则返回True
        If Num = a(j) Then Repeat = True: Exit Function
    Next
    Repeat = False
End Function

声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com