用C加加重复执行获取随机数
时间: 2023-05-28 17:04:28 浏览: 106
用C#生成不重复的随机数的代码
以下是使用C++重复执行获取随机数的示例代码:
```c++
#include <iostream>
#include <cstdlib>
#include <ctime>
int main()
{
// 设置随机数种子
srand(time(NULL));
// 重复执行获取随机数
for (int i = 0; i < 10; i++) {
int random_num = rand();
std::cout << "Random number: " << random_num << std::endl;
}
return 0;
}
```
该程序使用`srand()`函数将当前时间作为随机数种子,并使用`rand()`函数获取随机数。通过循环运行该程序,可以重复执行获取随机数的操作。
阅读全文