码迷,mamicode.com
首页 > 其他好文 > 详细

random随机数

时间:2019-07-18 19:54:36      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:生成   方法   nbsp   and   res   包括   exti   mat   randn   

公式:假设你要产生5到10之间的随机数,可以用下面方法:
int Min = 5;
int Max = 10;
int result = Min + (int)(Math.random() * ((Max - Min) + 1));

例如:
int randNum = rand.nextInt(3);
生成5-26之间的随机数,包括26
int randNum = rand.nextInt(22)+5;

 

random随机数

标签:生成   方法   nbsp   and   res   包括   exti   mat   randn   

原文地址:https://www.cnblogs.com/gwxppg/p/11209331.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!