vb中个随机选取一个0到1000之间的数怎么写

是x=Rnd*1000还是x=Rnd*1000+1??... 是x=Rnd*1000还是x=Rnd*1000+1 ?? 展开
 我来答
ebfok
2011-03-25 · TA获得超过160个赞
知道小有建树答主
回答量:165
采纳率:0%
帮助的人:113万
展开全部
To produce random integers in a given range, use this formula:

Int((upperbound - lowerbound + 1) * Rnd + lowerbound)

Here, upperbound is the highest number in the range, and lowerbound is the lowest number in the range.

Note To repeat sequences of random numbers, call Rnd with a negative argument immediately before using Randomize with a numeric argument. Using Randomize with the same value for number does not repeat the previous sequence.

Rnd Function Example
This example uses the Randomize statement to initialize the random-number generator. Because the number argument has been omitted, Randomize uses the return value from the Timer function as the new seed value.

Dim MyValue
Randomize ' Initialize random-number generator.

MyValue = Int((6 * Rnd) + 1) ' Generate random value between 1 and 6.
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
阿哥z瘋飛
2011-03-25
知道答主
回答量:15
采纳率:0%
帮助的人:0
展开全部
.......
这个是什麽题目....
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
936568153
2011-03-25 · TA获得超过639个赞
知道答主
回答量:177
采纳率:0%
帮助的人:74.1万
展开全部
x=int(Rnd*1000+1 ) int取整
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式