如何产生随机数

#include <stdio.h>
#include <stdlib.h>
 
int main() {
  int c, n;
 
  printf("Ten random numbers in [1,100]\n");
 
  for (c = 1; c <= 10; c++) {
    n = rand() % 100 + 1;
    printf("%d\n", n);
  }
 
  return 0;

}

需要注意的一点是,如果仅仅用rand函数,你会发现每次运行,上述程序的输出都是一样的。为什么呢,因为rand每次运行只进行一次seeded,而种子的默认值为1。要避免这种情况,则要使用下面的程序。

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

srand(time(NULL));
int r = rand();
要记住,srand()只使用一次。如果

int a = 0;

int b;

for(; a<=10; a++)

{

srand(time(NULL));

b = rand();

}

则会发现b全部是一样的。原因是因为srand每秒钟只运行一次。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值