以文本方式查看主题

-  智睿软件_技术交流论坛  (http://zhirui.net/bbs/index.asp)
--  Web页面设计  (http://zhirui.net/bbs/list.asp?boardid=33)
----  在Min 与 Max之间取随机数  (http://zhirui.net/bbs/dispbbs.asp?boardid=33&id=3411)

--  作者:zhirui
--  发布时间:2014-07-04 16:32:21
--  在Min 与 Max之间取随机数
 
Function rnd_Integer( Min, Max )   
Randomize
rnd_Integer = CInt((Max-Min+1)*Rnd()+Min)
End Function
在Min 与 Max之间取随机数