Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

VBScript Rnd 函数


❮ VBScript 完整参考

Rnd 函数返回一个随机数。该数字始终小于 1 但大于或等于 0。

语法

Rnd[(number)]

参数 描述
number 可选。一个有效的数值表达式

如果 number 为

  • <0 - Rnd 每次返回相同的数字
  • >0 - Rnd 返回序列中的下一个随机数
  • =0 - Rnd 返回最近生成的数字
  • 未提供 - Rnd 返回序列中的下一个随机数

示例

示例 1

一个随机数

<%

response.write(Rnd)

%>

请注意,您每次都会得到相同的数字。为了避免这种情况,请像示例 2 中那样使用 Randomize 语句

以上代码的输出将为

0.7055475
显示示例 »

示例 2

为了避免像示例 1 中那样每次都得到相同的数字,请使用 Randomize 语句

<%

Randomize
response.write(Rnd)

%>

以上代码的输出将为

0.4758112
显示示例 »

示例 3

以下是如何在给定范围内生成随机整数

<%

Dim max,min
max=100
min=1
Randomize
response.write(Int((max-min+1)*Rnd+min))

%>

以上代码的输出将为

71
显示示例 »

❮ VBScript 完整参考
×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.