「VBScript」乱数を返すサンプルコード
1.0~1の間の値の乱数
Dim cft
Randomize
cft = rnd
wscript.echo cft
2.100~150までの値の乱数返す
Dim cft
Randomize
cft = Int((150 – 100 + 1) * rnd + 100)
wscript.echo cft
Coding Changes the World
1.0~1の間の値の乱数
Dim cft
Randomize
cft = rnd
wscript.echo cft
2.100~150までの値の乱数返す
Dim cft
Randomize
cft = Int((150 – 100 + 1) * rnd + 100)
wscript.echo cft