VbMath 模块 (Visual Basic)
更新:2007 年 11 月
VbMath 模块包含用于执行算术操作的过程。
备注
此模块支持用于生成随机数的 Visual Basic 语言关键字和运行时库成员。
成员
|
|
示例
本例使用 Rnd 函数生成一个 1 到 6 之间的随机整数值。
' Initialize the random-number generator.
Randomize()
' Generate random value between 1 and 6.
Dim value As Integer = CInt(Int((6 * Rnd()) + 1))