當前位置:成語大全網 - 新華字典 - excel中VB隨機抽取如何實現不重復

excel中VB隨機抽取如何實現不重復

可以考慮用字典法:

set d=CreateObject("Scripting.dictionary")

for i=1 to 100

L:

s=round(rand(),3)

if d.exists(s) then goto L

d(s)=""

next