C语言生成随机数的代码
时间: 2023-11-29 22:44:43 浏览: 146
以下是C语言生成随机数的代码:
```c
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
int i, n;
time_t t;
n = 5;
// 初始化随机数种子
srand((unsigned) time(&t));
// 生成随机数并输出
for(i = 0; i < n; i++) {
printf("%d\n", rand());
}
return 0;
}
```
该代码使用了 `srand()` 函数来初始化随机数种子,然后使用 `rand()` 函数生成随机数并输出。需要注意的是,为了让每次运行程序时生成的随机数不同,我们使用了当前时间作为随机数种子。
相关问题
c语言生成随机数代码
在C语言中,我们可以使用rand()函数来生成随机数。但是需要注意的是,rand()函数生成的是伪随机数,也就是说它并不是真正的随机数。为了让rand()函数生成更加随机的数,我们需要使用srand()函数来设置一个随机的种子。一般情况下,我们可以使用time()函数来获取当前时间作为随机种子。下面是一个简单的C语言生成随机数的代码:
```
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
int i, n;
srand(time(NULL)); // 设置随机种子
printf("请输入要生成的随机数个数:");
scanf("%d", &n);
for (i = 0; i < n; i++)
{
printf("%d ", rand());
}
return 0;
}
```
在上面的代码中,我们使用srand(time(NULL))来设置随机种子,然后使用rand()函数来生成随机数。需要注意的是,每次运行程序时,生成的随机数序列都是不同的。
c语言生成随机数
在 C 语言中,可以使用标准库函数 `rand()` 生成随机数。但是,使用 `rand()` 之前需要先调用 `srand()` 函数来初始化随机数种子。一般情况下,可以使用系统时间作为随机数种子,来确保每次程序运行时生成的随机数都不同。以下是示例代码:
```c
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
int i, num;
// 初始化随机数种子
srand((unsigned)time(NULL));
// 生成 10 个随机数
for (i = 0; i < 10; i++) {
num = rand();
printf("%d\n", num);
}
return 0;
}
```
上述代码会输出 10 个随机数,每次运行输出的结果都会不同。
阅读全文