用C++写生成随机数代码
时间: 2024-01-29 08:02:20 浏览: 76
C++编写生成不重复的随机数代码
5星 · 资源好评率100%
以下是使用C语言编写的生成随机数的代码示例:
```c
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
int i;
srand(time(NULL)); // 以当前时间作为随机数种子
// 生成10个随机数并输出
for (i = 0; i < 10; i++) {
printf("%d ", rand());
}
return 0;
}
```
这个代码使用了stdlib.h库中的rand函数来生成随机数,使用time函数来获取当前时间作为种子,确保每次运行程序都会得到不同的随机数序列。
阅读全文