C++ rand函数怎么用,头文件应包括什么

 我来答
博学小赵爱生活
高能答主

2020-03-30 · 专注于食品生活科技行业
博学小赵爱生活
采纳数:456 获赞数:111864

向TA提问 私信TA
展开全部

使用rand函数时头文件应该包括stdlib.h,rand()函数用来产生随机数,但是,rand()的内部实现是用线性同余法实现的,是伪随机数,由于周期较长,因此在一定范围内可以看成是随机的。rand()会返回一个范围在0到RAND_MAX(至少是32767)之间的伪随机数(整数)。

在调用rand()函数之前,可以使用srand()函数设置随机数种子,如果没有设置随机数种子,rand()函数在调用时,自动设计随机数种子为1。随机种子相同,每次产生的随机数也会相同。rand()函数需要的头文件是:<stdlib.h>

rand()函数原型:int rand(void);使用rand()函数产生1-100以内的随机整数:int number1 = rand() % 100+1。

扩展资料:

使用rand()和srand()产生指定范围内的随机整数的方法,“模除+加法”的方法因为,对于任意数,0<=rand()%(n-m+1)<=n-m,因此,0+m<=rand()%(n-m+1)+m<=n-m+m,因此,如要产生[m,n]范围内的随机数num,可用:

int num=rand()%(n-m+1)+m。其中的rand()%(n-m+1)+m算是一个公式,记录一下方便以后查阅。比如产生10~30的随机整数:srand(time(0)),int a = rand() % (21)+10。

hwd0312
推荐于2017-09-17 · TA获得超过4336个赞
知道小有建树答主
回答量:1043
采纳率:100%
帮助的人:166万
展开全部

使用rand函数时头文件应该包括stdlib.h

函数原型:int rand (void);

返回值 : 介于0 和RAND_MAX.之间的随机数。

例子:

#include <stdio.h>      /* printf, scanf, puts, NULL */
#include <stdlib.h>     /* srand, rand */
#include <time.h>       /* time */

int main ()
{
  int iSecret, iGuess;

  /* initialize random seed: */
  srand (time(NULL));

  /* generate secret number between 1 and 10: */
  iSecret = rand() % 10 + 1;

  do {
    printf ("Guess the number (1 to 10): ");
    scanf ("%d",&iGuess);
    if (iSecret<iGuess) puts ("The secret number is lower");
    else if (iSecret>iGuess) puts ("The secret number is higher");
  } while (iSecret!=iGuess);

  puts ("Congratulations!");
  return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
黑万蜂O
2007-05-25 · 超过12用户采纳过TA的回答
知道答主
回答量:24
采纳率:0%
帮助的人:0
展开全部
/* RAND.C: This program seeds the random-number generator
* with the time, then displays 10 random integers.
*/

#include <stdlib.h>
#include <stdio.h>
#include <time.h>

void main( void )
{
int i;

/* Seed the random-number generator with current time so that
* the numbers will be different every time we run.
*/
srand( (unsigned)time( NULL ) );

/* Display 10 numbers. */
for( i = 0; i < 10;i++ )
printf( " %6d\n", rand() );
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
黎牛牛Pk
2007-05-25 · TA获得超过1042个赞
知道小有建树答主
回答量:396
采纳率:100%
帮助的人:108万
展开全部
#include <stdlib.h>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式