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))