VbMath 模块 (Visual Basic)

更新:2007 年 11 月

VbMath 模块包含用于执行算术操作的过程。

备注

此模块支持用于生成随机数的 Visual Basic 语言关键字和运行时库成员。

成员

Randomize

Rnd

 

 

示例

本例使用 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))

请参见

参考

数学摘要

导出的数学函数 (Visual Basic)

按照任务排列的关键字和成员

Visual Basic 语言关键字

Visual Basic 运行时库成员

不同语言中的关键字的比较