c语言中rand()函数怎么用?

 我来答
zhewlof365
2011-05-21 · TA获得超过1480个赞
知道小有建树答主
回答量:573
采纳率:0%
帮助的人:640万
展开全部
#include <stdio.h>
  #include <stdlib.h>
  int main()
  {
  unsigned int seed; /*申明初始化器的种子,注意是usigned int 型的*/
  int k;
  printf("Enter a positive integer seed value: \n");
  scanf("%u",&seed);
  srand(seed);
  printf("Random Numbers are:\n");
  for(k = 1; k <= 10; k++)
  {
  printf("%i",rand());
  printf("\n");
  }
  return 0;
  }
  当提供的种子相同时,随机数序列也是相同的。而且当种子为1时,与不使用srand()函数时一样的,也就是说rand()函数默认情况下初始化种子值为1;
  在stdlib.h 中这两个函数的原型是:
  int rand();
  void srand (unsigned int);
  srand(time(0)); i=rand(); 这样i就是一个真正意义上的随机数。
  rand()产生伪随机数,srand函数提供种子,种子不同产生的随机数序列也不同,所以通常先调用srand函数 time(0)返回的是系统的时间(从1970.1.1午夜算起),单位:秒,种子不同当然产生的随机数相同几率就很小了.
xyj7597290
2011-05-21 · TA获得超过826个赞
知道小有建树答主
回答量:630
采纳率:0%
帮助的人:239万
展开全部
rand() 是产生一个随机整数。我常这样用。
#include<stdio.h>
#include<math.h>
void main()
{
int a,b;
a=rand();
b=rand();/*这样就获得两个随机数*/
printf("a=%d\nb=%d",a,b);
}你去百度百科上看一下吧,说不定有。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lll0024
2011-05-21
知道答主
回答量:1
采纳率:0%
帮助的人:0
展开全部
// crt_rand.c
// This program seeds the random-number generator
// with the time, then exercises the rand function.
//

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

void SimpleRandDemo( int n )
{
// Print n random numbers.
int i;
for( i = 0; i < n; i++ )
printf( " %6d\n", rand() );
}

void RangedRandDemo( int range_min, int range_max, int n )
{
// Generate random numbers in the half-closed interval
// [range_min, range_max). In other words,
// range_min <= random number < range_max
int i;
for ( i = 0; i < n; i++ )
{
int u = (double)rand() / (RAND_MAX + 1) * (range_max - range_min)
+ range_min;
printf( " %6d\n", u);
}
}

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

SimpleRandDemo( 10 );
printf("\n");
RangedRandDemo( -100, 100, 10 );
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式