C语言生成随机数的代码
时间: 2023-11-29 12:44:43 浏览: 142
生成随机数的C语言代码
以下是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()` 函数生成随机数并输出。需要注意的是,为了让每次运行程序时生成的随机数不同,我们使用了当前时间作为随机数种子。
阅读全文