c++代码输出六个随机数
时间: 2023-11-04 08:37:40 浏览: 80
C++随机数的代码实现
以下是可以输出六个随机数的 C 代码:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
int i;
srand(time(NULL)); // 播种随机数种子
for(i = 0; i < 6; i++)
{
printf("%d ", rand()); // 输出随机数
}
return 0;
}
阅读全文