共用方式為


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 執行階段程式庫成員

比較不同語言的關鍵字