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

随机数关键字rand

时间:2020-06-13 13:11:52      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:自己   关键字   基本   div   rand   逻辑   基本语法   int   nbsp   

rand是取随机数

基本语法:

1 int B = rand() % 100;    //此时是取0~99中任意数

若想自己拟定,比如取1~100,则应:

此时为取1~100中任意数

int B = rand() % 100 + 1;

取4~200:

int B = rand() % 197 + 4;

按照逻辑计算出数字即可

 

随机数关键字rand

标签:自己   关键字   基本   div   rand   逻辑   基本语法   int   nbsp   

原文地址:https://www.cnblogs.com/xt112233/p/13112373.html

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