码迷,mamicode.com
首页 > 其他好文 > 详细

生成随机序列

时间:2020-03-24 14:33:23      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:mod   ext   int   end   res   cell   col   序列   temp   

利用vba生成8个随机数。

Sub rndSer()
    tempA = Array(0, 1, 2, 3, 4, 5, 6, 7)
    For i = 7 To 1 Step -1
        s = Int(Rnd() * (i + 1) + Second(Now())) Mod (i + 1)
        a = tempA(i)
        b = tempA(s)
        tempA(i) = b
        tempA(s) = a
    Next
    Range(Cells(1, 1), Cells(1, 8)).Resize = tempA
End Sub

 

生成随机序列

标签:mod   ext   int   end   res   cell   col   序列   temp   

原文地址:https://www.cnblogs.com/chenxiehan/p/12558774.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!